import { FC } from 'react'; import { ModalColor, ModalIcon } from '../../types/modal'; interface IProps { name: ModalIcon; color?: ModalColor; className?: string; } declare const Icon: FC; export default Icon;