@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
16 lines (15 loc) • 489 B
TypeScript
import { ChartDonutProps } from '@patternfly/react-charts';
export declare function PageDonutChart(props: Omit<ChartDonutProps, 'width' | 'height'> & {
total: number;
}): import("react/jsx-runtime").JSX.Element;
export declare function PageDashboardDonutCard(props: {
title: string;
linkText?: string;
to: string;
items: {
count: number;
label: string;
color: string;
}[];
loading?: boolean;
}): import("react/jsx-runtime").JSX.Element;