/** * * */ import React from "react"; import type { LucideIconNames } from "./lucide-icon-config"; interface IconProps { icon: LucideIconNames; size?: number; className?: string; strokeWidth?: number; } declare function Icon({ icon, size, className, strokeWidth }: IconProps): React.JSX.Element | null; export default Icon; export type { LucideIconNames };