JSPM

@fluentui/react-infobutton

9.0.0-beta.17
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 225661
  • Score
    100M100P100Q178367F
  • License MIT

React components for building web experiences

Package Exports

  • @fluentui/react-infobutton
  • @fluentui/react-infobutton/package.json

Readme

@fluentui/react-infobutton

React Infobutton components for Fluent UI React

STATUS: WIP 🚧

These are not production-ready components and should never be used in product. This space is useful for testing new components whose APIs might change before final release.

Usage

To import InfoButton:

import { InfoButton } from '@fluentui/react-infobutton';

Once the InfoButton component graduates to a production release, the component will be available at:

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

Examples

const InfoButtonExample = () => {
  return <InfoButton content="This is an InfoButton's content." />;
};