--- import type { PajamasIcon } from "@/types/icons" import type { ComponentProps } from "@/types/props" import { Icon } from "astro-icon/components" interface Props extends ComponentProps { name: PajamasIcon } const { name, class: clazz, ...props } = Astro.props ---