import { component$, type PropsOf, Slot } from '@builder.io/qwik'; import { cn } from '@qwik-ui/utils'; import { cva, type VariantProps } from 'class-variance-authority'; export const buttonVariants = cva( 'group inline-flex items-center justify-center rounded-sm text-sm font-medium transition-all duration-100 focus-visible:ring-1 focus-visible:ring-ring focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50', { variants: { look: { primary: 'border-base bg-primary text-primary-foreground shadow-sm hover:bg-primary/90 active:press active:shadow-base', secondary: 'border-base bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/90 active:press active:shadow-base', alert: 'border-base bg-alert text-alert-foreground shadow-sm hover:bg-alert/90 active:press active:shadow-base', outline: 'border bg-background text-foreground shadow-sm hover:bg-accent active:press active:shadow-base', ghost: 'text-accent-foreground hover:bg-accent', link: 'text-foreground hover:bg-transparent hover:text-foreground/80 hover:underline hover:underline-offset-2', }, size: { sm: 'h-8 px-2 py-1.5 text-sm', md: 'h-12 px-4 py-3 text-base', lg: 'h-16 px-8 py-4 text-lg', icon: 'h-10 w-10', }, }, defaultVariants: { look: 'primary', size: 'md', }, }, ); type ButtonProps = PropsOf<'button'> & VariantProps; export const Button = component$(({ size, look, ...props }) => { return ( ); });