@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 • 424 B
TypeScript
export declare enum ToggleGroupDataAttributes {
/**
* Present when the toggle group is disabled.
*/
disabled = "data-disabled",
/**
* Indicates the orientation of the toggle group.
* @type {'horizontal' | 'vertical'}
*/
orientation = "data-orientation",
/**
* Present when the toggle group allows multiple buttons to be in the pressed state at the same time.
*/
multiple = "data-multiple",
}