Socket
Socket
Sign inDemoInstall

@fluentui/react-progress

Package Overview
Dependencies
Maintainers
12
Versions
615
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/react-progress

Progress component for FluentUI v9


Version published
Weekly downloads
85K
decreased by-14.06%
Maintainers
12
Weekly downloads
 
Created
Source

@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>
  );
};

FAQs

Package last updated on 09 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc