--- interface Props { variant?: 'primary' | 'secondary' | 'tertiary'; href?: string; glow?: boolean; } const { variant = 'secondary', glow = false, href } = Astro.props; --- {href && ( )} {!href && ( )}