--- import Title from './Title.astro'; export interface Props { class?: string; grid?: 'narrow' | 'wide' | 'fullsize'; innerGrid?: boolean; } const { class: className, grid = 'narrow', innerGrid } = Astro.props; --- <slot />