--- interface Props { value: string; display?: string; label?: string; event?: string; } const { value, display = value, label = `copy ${value}`, event } = Astro.props; --- {display} copied