---
import { Icons } from './icons';
interface Props {
name: keyof typeof Icons;
label?: string;
color?: string;
size?: string;
class?: string;
}
const { name, label, size = '1em', color } = Astro.props;
const a11yAttrs = label ? ({ 'aria-label': label } as const) : ({ 'aria-hidden': 'true' } as const);
---