@procore/core-react
Version:
React library of Procore Design Guidelines
18 lines (11 loc) • 699 B
TypeScript
import React from 'react';
import type { ProgressBarProps } from './ProgressBar.types';
/**
Progress bars visually show system loading progress, such as uploading a file
or loading a page, as well as user progress, like filling out a form.
*/
export declare const ProgressBar: React.ForwardRefExoticComponent<ProgressBarProps & React.RefAttributes<HTMLDivElement>>;