--- import type { Icons } from '@components/icons/Icon.astro'; import Icon from '@components/icons/Icon.astro'; import type { HTMLAttributes } from 'astro/types'; interface Props extends HTMLAttributes<'div'> { icon: Icons text?: string } const { icon, text = 'Hiiii', ...rest } = Astro.props; ---
{text}