import { __experimentalHStack as HStack, ProgressBar } from '@wordpress/components'; import './style.scss'; interface StatProps { density?: 'low' | 'high'; description?: string; descriptionAlignment?: 'start' | 'end'; metric: string; progressColor?: 'alert-yellow' | 'alert-red' | 'alert-green'; progressLabel?: string; progressValue?: number; strapline?: string; } export function Stat( { density = 'low', description, descriptionAlignment = 'start', metric, progressColor, progressLabel, progressValue, strapline, }: StatProps ) { return (