@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.
16 lines • 556 B
JavaScript
export let ToolbarButtonDataAttributes = /*#__PURE__*/function (ToolbarButtonDataAttributes) {
/**
* Present when the button is disabled.
*/
ToolbarButtonDataAttributes["disabled"] = "data-disabled";
/**
* Indicates the orientation of the toolbar.
* @type {'horizontal' | 'vertical'}
*/
ToolbarButtonDataAttributes["orientation"] = "data-orientation";
/**
* Present when the button remains focusable when disabled.
*/
ToolbarButtonDataAttributes["focusable"] = "data-focusable";
return ToolbarButtonDataAttributes;
}({});