@chakra-ui/modal
Version:
An accessible dialog (modal) component for React & Chakra UI
13 lines (10 loc) • 412 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface ModalFooterProps extends HTMLChakraProps<"footer"> {
}
/**
* ModalFooter houses the action buttons of the modal.
* @see Docs https://chakra-ui.com/modal
*/
declare const ModalFooter: _chakra_ui_system.ComponentWithAs<"footer", ModalFooterProps>;
export { ModalFooter, ModalFooterProps };