UNPKG

@gpa-gemstone/react-interactive

Version:
14 lines (13 loc) 325 B
import * as React from 'react'; interface IProps { /** * Current Percentage out of 100 */ CurrentPercentage: number; /** * Class for progress div */ Class?: string; } declare const StatusProgressBar: (props: React.PropsWithChildren<IProps>) => JSX.Element; export default StatusProgressBar;