UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

13 lines (12 loc) 386 B
import React from "react"; import { DefaultTheme } from "styled-components"; interface ProgressBarProps { progress: number; height?: keyof DefaultTheme["spacing"]; color?: keyof DefaultTheme["colors"]; gradient?: keyof DefaultTheme["gradients"]; showLabel?: boolean; animated?: boolean; } export declare const ProgressBar: React.FC<ProgressBarProps>; export {};