16 lines
433 B
TypeScript
16 lines
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 };
|