--- type Fallback = 'none' | 'animate' | 'swap'; export interface Props { fallback?: Fallback; } const { fallback = 'animate' } = Astro.props; ---