@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.
12 lines • 636 B
JavaScript
export let SwitchRootDataAttributes = /*#__PURE__*/function (SwitchRootDataAttributes) {
SwitchRootDataAttributes["checked"] = "data-checked";
SwitchRootDataAttributes["unchecked"] = "data-unchecked";
SwitchRootDataAttributes["disabled"] = "data-disabled";
SwitchRootDataAttributes["readonly"] = "data-readonly";
SwitchRootDataAttributes["required"] = "data-required";
SwitchRootDataAttributes["valid"] = "data-valid";
SwitchRootDataAttributes["invalid"] = "data-invalid";
SwitchRootDataAttributes["touched"] = "data-touched";
SwitchRootDataAttributes["dirty"] = "data-dirty";
return SwitchRootDataAttributes;
}({});