@chakra-ui/modal
Version:
An accessible dialog (modal) component for React & Chakra UI
16 lines (13 loc) • 433 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface ModalHeaderProps extends HTMLChakraProps<"header"> {
}
/**
* ModalHeader
*
* React component that houses the title of the modal.
*
* @see Docs https://chakra-ui.com/modal
*/
declare const ModalHeader: _chakra_ui_system.ComponentWithAs<"header", ModalHeaderProps>;
export { ModalHeader, ModalHeaderProps };