import { Icon } from "@iconify/react"; export interface IconGlyphProps { name?: string; label?: string; size?: "sm" | "md" | "lg"; } export function IconGlyph({ name, label, size = "md" }: IconGlyphProps) { return ( {name ? : null} ); }