@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.
18 lines (17 loc) • 787 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SwitchRootDataAttributes = void 0;
let SwitchRootDataAttributes = exports.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;
}({});