1 | import * as React from "react";
|
2 | import { BoxProps } from "../Box";
|
3 |
|
4 | export 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 |
|
14 | export type ProgressProps = IProgress & BoxProps;
|
15 | declare const Progress: React.FC<ProgressProps>;
|
16 |
|
17 | export default Progress;
|