UNPKG

@uifabric/experiments

Version:

Experimental React components for building experiences for Microsoft 365.

24 lines 929 B
// Temporary import file to experiment with next version of foundation. import { composed } from '@uifabric/foundation/lib/next/composed'; import { ActionableStyles as styles, ActionableTokens as tokens } from './Actionable.styles'; import { useActionableState as state } from './Actionable.state'; import { ActionableSlots as slots, ActionableView as view } from './Actionable.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 Actionable = composed({ displayName: 'Actionable', 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 Actionable; //# sourceMappingURL=Actionable.js.map