import dynamic from 'next/dynamic'; import { FC, ReactNode } from 'react'; import Heading, { type HeadingProps } from '../../atoms/headings/heading'; import { type CogProps } from '../../atoms/icons/cog'; import { type MagnifyingGlassProps } from '../../atoms/icons/magnifying-glass'; import styles from './modal.module.scss'; export type Icons = 'cogs' | 'search'; export type ModalProps = { /** * The modal body. */ children: ReactNode; /** * Set additional classnames. */ className?: string; /** * Set additional classnames to the heading. */ headingClassName?: HeadingProps['className']; /** * A icon to illustrate the modal. */ icon?: Icons; /** * The modal title. */ title?: string; }; const CogIcon = dynamic(() => import('../../atoms/icons/cog'), { ssr: false, }); const SearchIcon = dynamic( () => import('../../atoms/icons/magnifying-glass'), { ssr: false } ); /** * Modal component * * Render a modal component with an optional title and icon. */ const Modal: FC = ({ children, className = '', headingClassName = '', icon, title, }) => { const getIcon = (id: Icons) => { switch (id) { case 'cogs': return ; case 'search': return ; default: return <>; } }; return (
{title && ( {icon && {getIcon(icon)}} {title} )} {children}
); }; export default Modal;