@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
14 lines (13 loc) • 325 B
TypeScript
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;