---
import { icons } from '@iconify-json/heroicons';
import type { HTMLAttributes } from 'astro/types';
import IconBase from './IconBase.astro';
import { type HeroIconName } from './iconType.js';

interface Props extends HTMLAttributes<'svg'> {
	name: HeroIconName;
	height?: number;
	width?: number;
}
---
<IconBase iconCollection={icons} {...Astro.props} />
