UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Microsoft 365.

24 lines 881 B
// Temporary import file to experiment with next version of foundation. import { composed } from '@uifabric/foundation/lib/next/composed'; import { useButtonState as state } from './Button.state'; import { ButtonStyles as styles, ButtonTokens as tokens } from './Button.styles'; import { ButtonSlots as slots, ButtonView as view } from './Button.view'; /* eslint-disable deprecation/deprecation */ /** * @deprecated This component was experimental and is not longer being developed on, nor will it be supported in the * future. */ export var Button = composed({ displayName: 'Button', slots: slots, state: state, styles: styles, tokens: tokens, view: view, }); /** * @deprecated This component was experimental and is not longer being developed on, nor will it be supported in the * future. */ export default Button; //# sourceMappingURL=Button.js.map