52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import * as React from "react"
|
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const toggleVariants = cva(
|
|
"inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: "bg-transparent",
|
|
outline:
|
|
"border border-input bg-transparent hover:bg-accent hover:text-accent-foreground",
|
|
},
|
|
size: {
|
|
default: "h-10 px-3",
|
|
sm: "h-9 px-2.5",
|
|
lg: "h-11 px-5",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
size: "default",
|
|
},
|
|
}
|
|
)
|
|
|
|
export interface ToggleProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
|
VariantProps<typeof toggleVariants> {
|
|
pressed?: boolean
|
|
onPressedChange?: (pressed: boolean) => void
|
|
}
|
|
|
|
const Toggle = React.forwardRef<HTMLButtonElement, ToggleProps>(
|
|
({ className, variant, size, pressed, onPressedChange, ...props }, ref) => {
|
|
return (
|
|
<button
|
|
ref={ref}
|
|
type="button"
|
|
aria-pressed={pressed}
|
|
data-state={pressed ? "on" : "off"}
|
|
onClick={() => onPressedChange?.(!pressed)}
|
|
className={cn(toggleVariants({ variant, size, className }))}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
)
|
|
|
|
Toggle.displayName = "Toggle"
|
|
|
|
export { Toggle, toggleVariants } |