--- export interface Props { title: string; type?: 'tip' | 'warning' | 'error' } const { type = 'tip', title } = Astro.props; ---