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." />;
};