import { type LucideProps } from 'lucide-react'; import { type ComponentType } from 'react'; import { cn } from '@/common/helpers/cn'; interface IconProps extends Omit { iconNode: ComponentType; } export function Icon({ iconNode: IconComponent, className, ...props }: IconProps) { return ; }