@baseplate-dev/ui-components
Version:
Shared UI component library
13 lines • 1.2 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { Switch as SwitchPrimitive } from 'radix-ui';
import { cn } from '#src/utils/index.js';
/**
* A control that allows the user to toggle between checked and not checked.
*
* https://ui.shadcn.com/docs/components/switch
*/
function Switch({ className, ...props }) {
return (_jsx(SwitchPrimitive.Root, { "data-slot": "switch", className: cn('peer inline-flex h-[1.15rem] w-8 shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input dark:data-[state=unchecked]:bg-input/80', className), ...props, children: _jsx(SwitchPrimitive.Thumb, { "data-slot": "switch-thumb", className: cn('pointer-events-none block size-4 rounded-full bg-background ring-0 transition-transform data-[state=checked]:translate-x-[calc(100%-2px)] data-[state=unchecked]:translate-x-0 dark:data-[state=checked]:bg-primary-foreground dark:data-[state=unchecked]:bg-foreground') }) }));
}
export { Switch };
//# sourceMappingURL=switch.js.map