--- interface Props { id?: string; name?: string; isIcon?: boolean; iconName?: string; width?: string; height?: string; regular?: boolean; light?: boolean card?: boolean; iconSize?: number, class?: string disabled?: boolean } const props = Astro.props; const { id, name, isIcon = false, iconName, width, height = '44px', regular, light, iconSize = 24, card, disabled = false, } = Astro.props; const className = Astro.props.class; import { Icon } from 'astro-icon/components'; ---