diff --git a/bun.lockb b/bun.lockb index adb22c8..f9b5b08 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index bd7a404..5cb533a 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@radix-ui/react-dropdown-menu": "^2.1.4", "@radix-ui/react-label": "^2.1.1", "@radix-ui/react-navigation-menu": "^1.2.3", - "@radix-ui/react-popover": "^1.1.4", + "@radix-ui/react-popover": "^1.1.6", "@radix-ui/react-scroll-area": "^1.2.2", "@radix-ui/react-select": "^2.1.4", "@radix-ui/react-separator": "^1.1.1", diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx index 6170dc8..48a63a3 100644 --- a/src/components/ui/button.tsx +++ b/src/components/ui/button.tsx @@ -5,7 +5,7 @@ import { cva, type VariantProps } from 'class-variance-authority'; import { cn } from '@/lib/utils'; const buttonVariants = cva( - 'inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50', + 'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0', { variants: { variant: { @@ -40,11 +40,11 @@ export interface ButtonProps } const Button = React.forwardRef( - ({className, variant, size, asChild = false, ...props}, ref) => { + ({ className, variant, size, asChild = false, ...props }, ref) => { const Comp = asChild ? Slot : 'button'; return ( diff --git a/src/components/ui/calendar.tsx b/src/components/ui/calendar.tsx index ae0a208..bec83b7 100644 --- a/src/components/ui/calendar.tsx +++ b/src/components/ui/calendar.tsx @@ -10,11 +10,11 @@ import { buttonVariants } from '@/components/ui/button'; export type CalendarProps = React.ComponentProps function Calendar({ - className, - classNames, - showOutsideDays = true, - ...props -}: CalendarProps) { + className, + classNames, + showOutsideDays = true, + ...props + }: CalendarProps) { return ( ( + IconLeft: ({ className, ...props }) => ( ), - IconRight: ({className, ...props}) => ( + IconRight: ({ className, ...props }) => ( ), }} diff --git a/src/components/ui/popover.tsx b/src/components/ui/popover.tsx index a84f99c..fe8c832 100644 --- a/src/components/ui/popover.tsx +++ b/src/components/ui/popover.tsx @@ -12,7 +12,7 @@ const PopoverTrigger = PopoverPrimitive.Trigger; const PopoverContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef ->(({className, align = 'center', sideOffset = 4, ...props}, ref) => ( +>(({ className, align = 'center', sideOffset = 4, ...props }, ref) => (