import { ChartDonutUtilization } from '@patternfly/react-charts/victory'; interface UsageData { x: string; y: number; } export const ChartUtilBasic: React.FunctionComponent = () => { const data: UsageData = { x: 'GBps capacity', y: 75 }; return (