2026-03-21 13:20:13 +05:30
|
|
|
"use client";
|
2026-03-20 17:32:05 +05:30
|
|
|
|
2026-03-21 13:20:13 +05:30
|
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
|
|
|
import { Toggle as TogglePrimitive } from "radix-ui";
|
|
|
|
|
import type * as React from "react";
|
2026-03-20 17:32:05 +05:30
|
|
|
|
2026-03-21 13:20:13 +05:30
|
|
|
import { cn } from "@/lib/utils";
|
2026-03-20 17:32:05 +05:30
|
|
|
|
|
|
|
|
const toggleVariants = cva(
|
2026-03-21 13:20:13 +05:30
|
|
|
"inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-[color,box-shadow] outline-none hover:bg-muted hover:text-muted-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
|
|
|
|
{
|
|
|
|
|
variants: {
|
|
|
|
|
variant: {
|
|
|
|
|
default: "bg-transparent",
|
|
|
|
|
outline:
|
|
|
|
|
"border border-input bg-transparent shadow-xs hover:bg-accent hover:text-accent-foreground",
|
|
|
|
|
},
|
|
|
|
|
size: {
|
|
|
|
|
default: "h-9 min-w-9 px-2",
|
|
|
|
|
sm: "h-8 min-w-8 px-1.5",
|
|
|
|
|
lg: "h-10 min-w-10 px-2.5",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
defaultVariants: {
|
|
|
|
|
variant: "default",
|
|
|
|
|
size: "default",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
);
|
2026-03-20 17:32:05 +05:30
|
|
|
|
|
|
|
|
function Toggle({
|
2026-03-21 13:20:13 +05:30
|
|
|
className,
|
|
|
|
|
variant,
|
|
|
|
|
size,
|
|
|
|
|
...props
|
|
|
|
|
}: React.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>) {
|
|
|
|
|
return (
|
|
|
|
|
<TogglePrimitive.Root
|
|
|
|
|
data-slot="toggle"
|
|
|
|
|
className={cn(toggleVariants({ variant, size, className }))}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
2026-03-20 17:32:05 +05:30
|
|
|
}
|
|
|
|
|
|
2026-03-21 13:20:13 +05:30
|
|
|
export { Toggle, toggleVariants };
|