--- export interface Props { status: 'active' | 'warning' | 'success' | 'error' | 'idle'; label: string; pulse?: boolean; size?: 'small' | 'medium' | 'large'; } const { status, label, pulse = true, size = 'medium' } = Astro.props; const statusColors = { active: '#00ff41', warning: '#ffb000', success: '#00ff41', error: '#ff0040', idle: '#888888' }; const statusColor = statusColors[status]; ---
{label}