UNPKG

react-components-design-system

Version:

React UI component for design system FIS ES PB5

14 lines (13 loc) 463 B
import "./Progress.scss"; export interface ProgressComponentProps { /**Pass the classname to change the style of progress*/ className?: string; /** Name to display on the top-left */ name?: number; /** Progress percentage (0-100) */ percent?: number; /** type progress */ type: ""; } declare function Progress({ name, percent, className }: ProgressComponentProps): import("react/jsx-runtime").JSX.Element; export default Progress;