--- export interface Props { type: 'primary' | 'secondary'; disabled?: boolean; } const { type, disabled = false } = Astro.props; ---