generated from johnnygerard/starter-nextjs-15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-checkbox.tsx
50 lines (48 loc) · 1.65 KB
/
app-checkbox.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"use client";
import { cn } from "@/util/cn";
import { memo } from "react";
import { Checkbox, type CheckboxProps } from "react-aria-components";
export const AppCheckbox = memo(({ children, ...props }: CheckboxProps) => {
return (
<Checkbox {...props}>
{({ isHovered, isFocusVisible, isSelected }) => (
<span className={cn("flex cursor-pointer items-center gap-2.5")}>
<span
aria-hidden
className={cn(
"grid size-4 place-items-center rounded-4",
"transition-[background-color,border-color,box-shadow]",
isFocusVisible &&
"shadow-[0_0_0_2px_var(--color-neutral-0),0_0_0_4px_var(--color-purple-400)]",
isSelected && (isHovered ? "bg-purple-500" : "bg-purple-400"),
!isSelected && [
"border border-neutral-900 dark:border-neutral-200",
isHovered && "border-neutral-600 dark:border-neutral-0",
isFocusVisible && "border-neutral-200 bg-neutral-0",
],
)}
>
{isSelected && (
<svg
className="size-3 stroke-neutral-900"
viewBox="0 0 12 12"
fill="none"
>
<path
d="M10 3L4.5 8.5L2 6"
strokeWidth="1.6666"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)}
</span>
<span className="tv_small">
<>{children}</>
</span>
</span>
)}
</Checkbox>
);
});
AppCheckbox.displayName = "AppCheckbox";