@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
15 lines (14 loc) • 399 B
TypeScript
export type PageDashboardCountBarProps = {
counts: {
title: string;
total?: number;
to: string;
counts?: {
label: string;
count: number;
color: string;
link?: string;
}[];
}[];
};
export declare function PageDashboardCountBar(props: PageDashboardCountBarProps): import("react/jsx-runtime").JSX.Element;