nes-ui-react
Version:
A design system that paints the web in 8 bits.
9 lines (8 loc) • 412 B
TypeScript
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface ProgressProps extends StyleProps, IdProps {
value: number | string;
max?: number | string;
color?: 'primary' | 'success' | 'error' | 'warning' | 'pattern';
}
export declare const Progress: ({ id, value, max, style, color }: ProgressProps) => import("react/jsx-runtime").JSX.Element;