@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.
15 lines • 375 B
TypeScript
export declare enum ToolbarButtonDataAttributes {
/**
* Present when the button is disabled.
*/
disabled = "data-disabled",
/**
* Indicates the orientation of the toolbar.
* @type {'horizontal' | 'vertical'}
*/
orientation = "data-orientation",
/**
* Present when the button remains focusable when disabled.
*/
focusable = "data-focusable",
}