@fluentui/react-progress
TypeScript icon, indicating that this package has built-in type declarations

9.1.71 • Public • Published

@fluentui/react-progress

React Progress components for Fluent UI React

Usage

To import ProgressBar:

import { ProgressBar } from '@fluentui/react-components';

Examples

const ProgressBarExample = () => {
  return <ProgressBar thickness="large" value={0.5} />;
};

Using Field

The Field component is a wrapper around the ProgressBar component that allows the user to add a label, hint, validationMessage, and validationState to the ProgressBar component. You can pass these props, as well as the regular ProgressBar props to a Field component.

To import Field:

import { Field } from '@fluentui/react-field';
const FieldExample = () => {
  return (
    <Field
      label="Determinate ProgressBar"
      hint="This is a determinate Progress with description"
      value={0.5}
      validationState="warning"
    >
      <ProgressBar />
    </Field>
  );
};

Readme

Keywords

none

Package Sidebar

Install

npm i @fluentui/react-progress

Weekly Downloads

82,641

Version

9.1.71

License

MIT

Unpacked Size

136 kB

Total Files

49

Last publish

Collaborators

  • sopranopillow
  • microsoft1es
  • justslone
  • chrisdholt
  • miroslavstastny
  • levithomason
  • uifabricteam
  • uifrnbot
  • dzearing
  • layershifter
  • ling1726
  • travisspomer