import { type FC } from 'react' import { cn } from '@/lib/utils' import { ICONS } from './constants' import { type IconProps } from './types' const Icon: FC = ({ type, size = 'sm', className, color, disabled = false }) => { const IconElement = ICONS[type] return ( ) } export default Icon