import { ChartDonutUtilization } from '@patternfly/react-charts/victory'; interface UsageData { x?: string; y?: number; name?: string; } export const ChartUtilSmallRightSubtitle: React.FunctionComponent = () => { const data: UsageData = { x: 'Storage capacity', y: 45 }; const legendData: UsageData[] = [{ name: `Storage capacity: 45%` }, { name: 'Unused' }]; return (