15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import type { LucideIcon } from 'lucide-react';
|
|
|
|
interface IconProps {
|
|
iconNode?: LucideIcon | null;
|
|
className?: string;
|
|
}
|
|
|
|
export function Icon({ iconNode: IconComponent, className }: IconProps) {
|
|
if (!IconComponent) {
|
|
return null;
|
|
}
|
|
|
|
return <IconComponent className={className} />;
|
|
}
|