--- import Icon from './Icon.astro'; import type { Icons } from '../components/Icons'; interface Props { icon?: keyof typeof Icons; title: string; } const { icon, title } = Astro.props; ---

{icon && }