@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
18 lines (17 loc) • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ToolbarRootDataAttributes = void 0;
let ToolbarRootDataAttributes = exports.ToolbarRootDataAttributes = /*#__PURE__*/function (ToolbarRootDataAttributes) {
/**
* Present when the toolbar is disabled.
*/
ToolbarRootDataAttributes["disabled"] = "data-disabled";
/**
* Indicates the orientation of the toolbar.
* @type {'horizontal' | 'vertical'}
*/
ToolbarRootDataAttributes["orientation"] = "data-orientation";
return ToolbarRootDataAttributes;
}({});