@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) • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ToolbarGroupDataAttributes = void 0;
let ToolbarGroupDataAttributes = exports.ToolbarGroupDataAttributes = /*#__PURE__*/function (ToolbarGroupDataAttributes) {
/**
* Present when the group is disabled.
*/
ToolbarGroupDataAttributes["disabled"] = "data-disabled";
/**
* Indicates the orientation of the toolbar.
* @type {'horizontal' | 'vertical'}
*/
ToolbarGroupDataAttributes["orientation"] = "data-orientation";
return ToolbarGroupDataAttributes;
}({});