import { FormControl } from '@@/form-components/FormControl'; import { ProgressBar } from '@@/ProgressBar'; interface ResourceUsageItemProps { value: number; total: number; annotation?: React.ReactNode; label: string; isLoading?: boolean; dataCy?: string; } export function ResourceUsageItem({ value, total, annotation, label, isLoading = false, dataCy, }: ResourceUsageItemProps) { return (
{annotation}
); }