UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

12 lines (11 loc) 275 B
import { FC } from "react"; import { EColor } from "enum"; import "./index.scss"; interface IProps { percent?: number | string; height?: number | string; className?: string; color?: EColor; } declare const ProgressBar: FC<IProps>; export default ProgressBar;