mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? - Modify and adjust styles (CSS vars, components) to match the design system - Adjust file and directory structure of admin UI ### Type of change - [x] Refactoring
37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
'use client';
|
|
|
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
import * as React from 'react';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const Switch = React.forwardRef<
|
|
React.ElementRef<typeof SwitchPrimitives.Root>,
|
|
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>
|
|
>(({ className, ...props }, ref) => (
|
|
<SwitchPrimitives.Root
|
|
className={cn(
|
|
'group/switch inline-flex h-4 w-7 shrink-0 cursor-pointer items-center rounded-full',
|
|
'border-2 border-transparent overflow-hidden transition-colors',
|
|
'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary',
|
|
'disabled:cursor-not-allowed disabled:opacity-50',
|
|
'data-[state=checked]:bg-accent-primary data-[state=unchecked]:bg-text-sub-title',
|
|
className,
|
|
)}
|
|
{...props}
|
|
ref={ref}
|
|
>
|
|
<SwitchPrimitives.Thumb
|
|
className="
|
|
pointer-events-none block w-3 h-3 rounded-full bg-white shadow-lg ring-0 transition-all ease-out
|
|
group-hover/switch:w-4 group-focus-visible/switch:w-4
|
|
data-[state=checked]:translate-x-3 data-[state=unchecked]:translate-x-0
|
|
group-hover/switch:data-[state=checked]:translate-x-2 group-focus-visible/switch:data-[state=checked]:translate-x-2
|
|
"
|
|
/>
|
|
</SwitchPrimitives.Root>
|
|
));
|
|
Switch.displayName = SwitchPrimitives.Root.displayName;
|
|
|
|
export { Switch };
|