--- import type { LinkProps } from "@/types/props" interface Props extends LinkProps { noStyle?: boolean } const { href, noStyle = false, class: clazz, ...props } = Astro.props ---