--- import { Icon } from 'astro-icon' interface Props { label?: string, editUrl: string } const { editUrl, label = 'Edit this page' } = Astro.props --- { editUrl && ( {label} ) }