import { Slot } from "@radix-ui/react-slot"; import { cva, type VariantProps } from "class-variance-authority"; import * as React from "react"; import { cn } from "@/lib/utils"; const buttonVariants = cva( "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-lg text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none disabled:select-none [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", { variants: { variant: { default: "bg-primary text-primary-foreground hover:bg-primary-hover", destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", outline: "border border-border hover:bg-muted hover:text-accent-foreground disabled:bg-muted disabled:!border-none", primary: "border bg-background text-secondary-foreground hover:bg-muted hover:shadow-sm", warning: "bg-warning text-warning-foreground hover:bg-warning/90", secondary: "border border-muted bg-muted text-secondary-foreground hover:bg-secondary-foreground/5", ghost: "text-foreground hover:bg-accent hover:text-accent-foreground disabled:!bg-transparent", ghostActive: "bg-muted text-foreground hover:bg-secondary-hover hover:text-accent-foreground", link: "underline-offset-4 hover:underline text-primary", }, size: { default: "h-10 py-2 px-4", md: "h-8 py-2 px-4", sm: "h-9 px-3 rounded-md", xs: "py-0.5 px-3 rounded-md", lg: "h-11 px-8 rounded-md", iconMd: "p-1.5 rounded-md", icon: "p-1 rounded-md", iconSm: "p-0.5 rounded-md", }, }, defaultVariants: { variant: "default", size: "default", }, }, ); function toTitleCase(text: string) { return text ?.split(" ") ?.map( (word) => word?.charAt(0)?.toUpperCase() + word?.slice(1)?.toLowerCase(), ) ?.join(" "); } export interface ButtonProps extends React.ButtonHTMLAttributes, VariantProps { asChild?: boolean; loading?: boolean; ignoreTitleCase?: boolean; } const Button = React.forwardRef( ( { className, variant, size, loading, disabled, asChild = false, children, ignoreTitleCase = false, ...props }, ref, ) => { const Comp = asChild ? Slot : "button"; let newChildren = children; if (typeof children === "string") { newChildren = ignoreTitleCase ? children : toTitleCase(children); } const shouldScale = props["aria-haspopup"] !== "dialog"; return ( {loading ? ( {newChildren}
) : ( newChildren )} ); }, ); Button.displayName = "Button"; export { Button, buttonVariants };