@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
8 lines (7 loc) • 311 B
TypeScript
import React from 'react';
import { LinearProgressProps } from './types';
/**
* Progress indicators inform users about the status of ongoing processes, such as loading an app, submitting a form, or saving updates.
*/
declare const LinearProgress: React.FC<LinearProgressProps>;
export default LinearProgress;