import { FC } from 'react' import { CloseCircle } from 'iconsax-react' type Props = { label: string, close: () => void, } const HeaderModal: FC = (props: Props) => { return (
{props.label}
) } export default HeaderModal