@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
15 lines (14 loc) • 670 B
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import { SwitchButtonProps } from "./switch.types.js";
import "../index.js";
//#region src/switch/switchButton.d.ts
declare const SwitchButtonBase: import("styled-components").StyledComponent<"span", any, SystemProps, never>;
/**
* Controls the logic and visuals of multiple inner parts, such as input, track or thumb elements.
* Handles controlled and uncontrolled modes.
*/
declare const SwitchButton: VuiComponent<"span", SwitchButtonProps>;
//#endregion
export { SwitchButton, SwitchButton as default, SwitchButtonBase };
//# sourceMappingURL=switchButton.d.ts.map