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