UNPKG

@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 595 B
export let ToggleGroupDataAttributes = /*#__PURE__*/function (ToggleGroupDataAttributes) { /** * Present when the toggle group is disabled. */ ToggleGroupDataAttributes["disabled"] = "data-disabled"; /** * Indicates the orientation of the toggle group. * @type {'horizontal' | 'vertical'} */ ToggleGroupDataAttributes["orientation"] = "data-orientation"; /** * Present when the toggle group allows multiple buttons to be in the pressed state at the same time. */ ToggleGroupDataAttributes["multiple"] = "data-multiple"; return ToggleGroupDataAttributes; }({});