--- export interface Props { href?: string; class?: string; } const { href, class: className } = Astro.props; const Component = href ? 'a' : 'div'; ---