--- import { Icon } from 'astro-icon/components'; export interface Props { icon?: string; title?: string; description?: string; } const { icon = 'tabler:info-square', title = await Astro.slots.render('title'), description = await Astro.slots.render('description'), } = Astro.props; ---