mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-17 23:51:08 +00:00
52 lines
2 KiB
TypeScript
52 lines
2 KiB
TypeScript
import * as React from "react"
|
|
import { Slot } from "@radix-ui/react-slot"
|
|
import { cva, type VariantProps } from "class-variance-authority"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const buttonVariants = cva(
|
|
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-full text-base font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-30 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 cursor-pointer active:opacity-80",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
primary:
|
|
"bg-primary text-primary-foreground hover:bg-primary/70 border border-vscode-button-background",
|
|
secondary:
|
|
"bg-secondary text-secondary-foreground hover:bg-secondary/70 border border-vscode-button-secondaryBackground",
|
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
|
outline:
|
|
"border border-vscode-foreground/30 text-vscode-foreground bg-transparent hover:bg-secondary hover:text-accent-foreground",
|
|
link: "text-primary underline-offset-4 hover:underline",
|
|
combobox:
|
|
"border border-vscode-dropdown-border focus-visible:border-vscode-focusBorder bg-vscode-dropdown-background hover:bg-transparent text-vscode-dropdown-foreground font-normal",
|
|
},
|
|
size: {
|
|
default: "h-7 px-3",
|
|
sm: "h-6 px-2 text-sm",
|
|
lg: "h-8 px-4 text-lg",
|
|
icon: "h-7 w-7",
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "secondary",
|
|
size: "default",
|
|
},
|
|
},
|
|
)
|
|
|
|
export interface ButtonProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
|
VariantProps<typeof buttonVariants> {
|
|
asChild?: boolean
|
|
}
|
|
|
|
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
|
({ className, variant, size, asChild = false, ...props }, ref) => {
|
|
const Comp = asChild ? Slot : "button"
|
|
return <Comp className={cn(buttonVariants({ variant, size, className }))} ref={ref} {...props} />
|
|
},
|
|
)
|
|
Button.displayName = "Button"
|
|
|
|
export { Button, buttonVariants }
|