// Status badge for a Vercel deployment state import { Badge, Spinner, Flex } from '@sanity/ui' import { stateLabel } from '../lib/helpers' import type { VercelDeployState } from '../types' interface StatusBadgeProps { state: VercelDeployState | undefined /** When true, shows a spinner alongside the label */ showSpinner?: boolean } export function StatusBadge({ state, showSpinner }: StatusBadgeProps) { const { label, tone } = stateLabel(state) const spinning = showSpinner && (state === 'QUEUED' || state === 'INITIALIZING' || state === 'BUILDING') return ( {spinning && } {label} ) }