import { FC } from "react"; import type { IconType } from "./icon-list"; import { ColorVariantType } from "../../types/colors"; export interface IconProps { name: IconType; color?: ColorVariantType; size?: number; className?: string; onClick?: () => void; } export declare const Icon: FC; export default Icon;