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