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