import type { FC } from 'react' import React from 'react' type IconProps = { icon: any className?: string [key: string]: any } const Icon: FC = ({ icon, className, ...other }) => { return ( icon ) } export default Icon