--- import Icon from './Icon.astro'; interface Props { title: string; text?: string; } const { title, text } = Astro.props; ---

{title}

{text &&

{text}

}