@chakra-ui/modal
Version:
An accessible dialog (modal) component for React & Chakra UI
16 lines (13 loc) • 422 B
text/typescript
import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface ModalBodyProps extends HTMLChakraProps<"div"> {
}
/**
* ModalBody
*
* React component that houses the main content of the modal.
*
* @see Docs https://chakra-ui.com/modal
*/
declare const ModalBody: _chakra_ui_system.ComponentWithAs<"div", ModalBodyProps>;
export { ModalBody, ModalBodyProps };