diff options
| author | 2026-02-22 19:47:13 +0800 | |
|---|---|---|
| committer | 2026-02-22 19:47:13 +0800 | |
| commit | 01b546cc816c4fb6b7389e5122b7802d7e724a2b (patch) | |
| tree | b33e71dc81c60a6678e6fb14f736713bd94bd5dc /packages/ui-new/src/components/ui/checkbox.tsx | |
| parent | 1a103de2f1ef75cd73347953cbe27e14606df871 (diff) | |
| download | DropOut-01b546cc816c4fb6b7389e5122b7802d7e724a2b.tar.gz DropOut-01b546cc816c4fb6b7389e5122b7802d7e724a2b.zip | |
refactor(shadcn): use base lyra instead
Diffstat (limited to 'packages/ui-new/src/components/ui/checkbox.tsx')
| -rw-r--r-- | packages/ui-new/src/components/ui/checkbox.tsx | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/packages/ui-new/src/components/ui/checkbox.tsx b/packages/ui-new/src/components/ui/checkbox.tsx index e771797..9f22cea 100644 --- a/packages/ui-new/src/components/ui/checkbox.tsx +++ b/packages/ui-new/src/components/ui/checkbox.tsx @@ -1,29 +1,24 @@ "use client"; -import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; +import { Checkbox as CheckboxPrimitive } from "@base-ui/react/checkbox"; import { CheckIcon } from "lucide-react"; -import type * as React from "react"; - import { cn } from "@/lib/utils"; -function Checkbox({ - className, - ...props -}: React.ComponentProps<typeof CheckboxPrimitive.Root>) { +function Checkbox({ className, ...props }: CheckboxPrimitive.Root.Props) { return ( <CheckboxPrimitive.Root data-slot="checkbox" className={cn( - "peer border-input dark:bg-input/30 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground dark:data-[state=checked]:bg-primary data-[state=checked]:border-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50", + "border-input dark:bg-input/30 data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary data-checked:border-primary aria-invalid:aria-checked:border-primary aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 flex size-4 items-center justify-center rounded-none border transition-colors group-has-disabled/field:opacity-50 focus-visible:ring-1 aria-invalid:ring-1 peer relative shrink-0 outline-none after:absolute after:-inset-x-3 after:-inset-y-2 disabled:cursor-not-allowed disabled:opacity-50", className, )} {...props} > <CheckboxPrimitive.Indicator data-slot="checkbox-indicator" - className="grid place-content-center text-current transition-none" + className="[&>svg]:size-3.5 grid place-content-center text-current transition-none" > - <CheckIcon className="size-3.5" /> + <CheckIcon /> </CheckboxPrimitive.Indicator> </CheckboxPrimitive.Root> ); |