import { type JSX, splitProps } from 'solid-js'; import { cva, type VariantProps } from 'class-variance-authority'; import { cn } from '../utils/cn'; const buttonVariants = cva( 'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:pointer-events-none disabled:opacity-50', { variants: { variant: { default: 'bg-primary text-primary-foreground hover:bg-primary/90', ghost: 'hover:bg-muted text-foreground', outline: 'bg-muted/50 text-foreground hover:bg-muted', destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90', }, size: { sm: 'h-8 px-3 text-xs rounded-md', md: 'h-9 px-4 text-sm', lg: 'h-10 px-6 text-sm', icon: 'h-9 w-9', 'icon-sm': 'h-7 w-7', }, }, defaultVariants: { variant: 'default', size: 'md' }, } ); export interface ButtonProps extends JSX.ButtonHTMLAttributes, VariantProps {} export function Button(props: ButtonProps) { const [local, rest] = splitProps(props, ['variant', 'size', 'class', 'children']); return ( ); } export { buttonVariants };