UNPKG

369 BTypeScriptView Raw
1import * as React from "react";
2import { BoxProps } from "../Box";
3
4export interface IProgress {
5 color?: string;
6 value?: number;
7 min?: number;
8 max?: number;
9 size?: "lg" | "md" | "sm";
10 hasStripe?: boolean;
11 isAnimated?: boolean;
12}
13
14export type ProgressProps = IProgress & BoxProps;
15declare const Progress: React.FC<ProgressProps>;
16
17export default Progress;