@while-and-for/tremor-react
Version:
The React library to build dashboards faster.
13 lines (12 loc) • 439 B
TypeScript
import React from "react";
import { Color } from "../../../lib";
export interface CategoryBarProps extends React.HTMLAttributes<HTMLDivElement> {
values: number[];
colors?: Color[];
markerValue?: number;
showLabels?: boolean;
tooltip?: string;
showAnimation?: boolean;
}
declare const CategoryBar: React.ForwardRefExoticComponent<CategoryBarProps & React.RefAttributes<HTMLDivElement>>;
export default CategoryBar;