--- import Headline from '~/components/ui/Headline.astro'; import WidgetWrapper from '~/components/ui/WidgetWrapper.astro'; import { Icon } from 'astro-icon/components'; import type { Features as Props } from '~/types'; const { title = await Astro.slots.render('title'), subtitle = await Astro.slots.render('subtitle'), tagline = await Astro.slots.render('tagline'), items = [], defaultIcon = 'tabler:point-filled', id, isDark = false, classes = {}, bg = await Astro.slots.render('bg'), } = Astro.props; ---
{items.map(({ title, description, icon }) => (

{title}

{description}

))}