UNPKG

@webkom/react-meter-bar

Version:

A simple react meter component

12 lines 358 B
/// <reference types="react" /> import './Bar.css'; type Props = { labels: (string | number)[]; progress: number; labelColor: string; barColor: string; separatorColor: string; }; declare const Bar: ({ labels, progress, labelColor, barColor, separatorColor, }: Props) => JSX.Element; export default Bar; //# sourceMappingURL=index.d.ts.map