UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

8 lines (7 loc) 281 B
import * as React from 'react'; export interface ProgressProps extends React.HTMLAttributes<HTMLDivElement> { value?: number; max?: number; } declare const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>; export { Progress };