@bipce/hrnet_modal_package
Version:
This is the package for the modal for the last project (HrNet), of the react course on OpenClassRooms
15 lines (11 loc) • 419 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
type ModalProps = {
sectionClassName?: string;
pClassName?: string;
btnClassName?: string;
iconClassName?: string;
message: string;
onHandleClick?: () => void;
};
declare const Modal: ({ sectionClassName, pClassName, btnClassName, iconClassName, message, onHandleClick }: ModalProps) => react_jsx_runtime.JSX.Element;
export { Modal };