diff --git a/src/renderer/src/components/ui/alert-dialog.tsx b/src/renderer/src/components/ui/alert-dialog.tsx index 33e7780..17daef1 100644 --- a/src/renderer/src/components/ui/alert-dialog.tsx +++ b/src/renderer/src/components/ui/alert-dialog.tsx @@ -1,8 +1,8 @@ import * as React from "react" import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog" -import { cn } from "src/renderer/src/lib/utils" -import { buttonVariants } from "src/renderer/src/components/ui/button" +import { cn } from "@renderer/lib/utils" +import { buttonVariants } from "@renderer/components/ui/button" const AlertDialog = AlertDialogPrimitive.Root diff --git a/src/renderer/src/components/ui/alert.tsx b/src/renderer/src/components/ui/alert.tsx index aff01ec..9ed01b2 100644 --- a/src/renderer/src/components/ui/alert.tsx +++ b/src/renderer/src/components/ui/alert.tsx @@ -1,7 +1,7 @@ import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const alertVariants = cva( "relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7", diff --git a/src/renderer/src/components/ui/badge.tsx b/src/renderer/src/components/ui/badge.tsx index 1145c66..e0733c3 100644 --- a/src/renderer/src/components/ui/badge.tsx +++ b/src/renderer/src/components/ui/badge.tsx @@ -1,7 +1,7 @@ import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const badgeVariants = cva( "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2", diff --git a/src/renderer/src/components/ui/button.tsx b/src/renderer/src/components/ui/button.tsx index ea72b71..0d738bf 100644 --- a/src/renderer/src/components/ui/button.tsx +++ b/src/renderer/src/components/ui/button.tsx @@ -2,7 +2,7 @@ import * as React from "react" import { Slot } from "@radix-ui/react-slot" import { cva, type VariantProps } from "class-variance-authority" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" 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-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0", diff --git a/src/renderer/src/components/ui/card.tsx b/src/renderer/src/components/ui/card.tsx index 0102ad8..5aeda07 100644 --- a/src/renderer/src/components/ui/card.tsx +++ b/src/renderer/src/components/ui/card.tsx @@ -1,6 +1,6 @@ import * as React from "react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Card = React.forwardRef< HTMLDivElement, diff --git a/src/renderer/src/components/ui/checkbox.tsx b/src/renderer/src/components/ui/checkbox.tsx index 7580e2a..5ee1a39 100644 --- a/src/renderer/src/components/ui/checkbox.tsx +++ b/src/renderer/src/components/ui/checkbox.tsx @@ -4,7 +4,7 @@ import * as React from "react" import * as CheckboxPrimitive from "@radix-ui/react-checkbox" import { Check } from "lucide-react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Checkbox = React.forwardRef< React.ElementRef, diff --git a/src/renderer/src/components/ui/dialog.tsx b/src/renderer/src/components/ui/dialog.tsx index c039171..8753f8c 100644 --- a/src/renderer/src/components/ui/dialog.tsx +++ b/src/renderer/src/components/ui/dialog.tsx @@ -2,7 +2,7 @@ import * as React from "react" import * as DialogPrimitive from "@radix-ui/react-dialog" import { X } from "lucide-react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Dialog = DialogPrimitive.Root diff --git a/src/renderer/src/components/ui/input.tsx b/src/renderer/src/components/ui/input.tsx index 2f1acee..f094ede 100644 --- a/src/renderer/src/components/ui/input.tsx +++ b/src/renderer/src/components/ui/input.tsx @@ -1,6 +1,6 @@ import * as React from "react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Input = React.forwardRef>( ({ className, type, ...props }, ref) => { diff --git a/src/renderer/src/components/ui/label.tsx b/src/renderer/src/components/ui/label.tsx index 599058f..8c90b52 100644 --- a/src/renderer/src/components/ui/label.tsx +++ b/src/renderer/src/components/ui/label.tsx @@ -2,7 +2,7 @@ import * as React from "react" import * as LabelPrimitive from "@radix-ui/react-label" import { cva, type VariantProps } from "class-variance-authority" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const labelVariants = cva( "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70" diff --git a/src/renderer/src/components/ui/popover.tsx b/src/renderer/src/components/ui/popover.tsx index 8e8016b..0d36a63 100644 --- a/src/renderer/src/components/ui/popover.tsx +++ b/src/renderer/src/components/ui/popover.tsx @@ -1,7 +1,7 @@ import * as React from "react" import * as PopoverPrimitive from "@radix-ui/react-popover" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Popover = PopoverPrimitive.Root diff --git a/src/renderer/src/components/ui/progress.tsx b/src/renderer/src/components/ui/progress.tsx index 0d5591b..d03903f 100644 --- a/src/renderer/src/components/ui/progress.tsx +++ b/src/renderer/src/components/ui/progress.tsx @@ -3,7 +3,7 @@ import * as React from "react" import * as ProgressPrimitive from "@radix-ui/react-progress" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Progress = React.forwardRef< React.ElementRef, diff --git a/src/renderer/src/components/ui/scroll-area.tsx b/src/renderer/src/components/ui/scroll-area.tsx index 2b161eb..369fe3e 100644 --- a/src/renderer/src/components/ui/scroll-area.tsx +++ b/src/renderer/src/components/ui/scroll-area.tsx @@ -1,7 +1,7 @@ import * as React from "react" import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const ScrollArea = React.forwardRef< React.ElementRef, diff --git a/src/renderer/src/components/ui/select.tsx b/src/renderer/src/components/ui/select.tsx index ee47c5e..0d8b23a 100644 --- a/src/renderer/src/components/ui/select.tsx +++ b/src/renderer/src/components/ui/select.tsx @@ -2,7 +2,7 @@ import * as React from "react" import * as SelectPrimitive from "@radix-ui/react-select" import { Check, ChevronDown, ChevronUp } from "lucide-react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Select = SelectPrimitive.Root diff --git a/src/renderer/src/components/ui/sheet.tsx b/src/renderer/src/components/ui/sheet.tsx index 5f902fe..309d483 100644 --- a/src/renderer/src/components/ui/sheet.tsx +++ b/src/renderer/src/components/ui/sheet.tsx @@ -3,7 +3,7 @@ import * as SheetPrimitive from "@radix-ui/react-dialog" import { cva, type VariantProps } from "class-variance-authority" import { X } from "lucide-react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Sheet = SheetPrimitive.Root diff --git a/src/renderer/src/components/ui/switch.tsx b/src/renderer/src/components/ui/switch.tsx index c607d40..47901f0 100644 --- a/src/renderer/src/components/ui/switch.tsx +++ b/src/renderer/src/components/ui/switch.tsx @@ -3,7 +3,7 @@ import * as React from "react" import * as SwitchPrimitives from "@radix-ui/react-switch" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Switch = React.forwardRef< React.ElementRef, diff --git a/src/renderer/src/components/ui/table.tsx b/src/renderer/src/components/ui/table.tsx index fdbf95c..bae48a4 100644 --- a/src/renderer/src/components/ui/table.tsx +++ b/src/renderer/src/components/ui/table.tsx @@ -1,6 +1,6 @@ import * as React from "react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Table = React.forwardRef< HTMLTableElement, diff --git a/src/renderer/src/components/ui/tabs.tsx b/src/renderer/src/components/ui/tabs.tsx index 0896517..e305cc6 100644 --- a/src/renderer/src/components/ui/tabs.tsx +++ b/src/renderer/src/components/ui/tabs.tsx @@ -1,7 +1,7 @@ import * as React from "react" import * as TabsPrimitive from "@radix-ui/react-tabs" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Tabs = TabsPrimitive.Root diff --git a/src/renderer/src/components/ui/textarea.tsx b/src/renderer/src/components/ui/textarea.tsx index fb684bd..8b44cd2 100644 --- a/src/renderer/src/components/ui/textarea.tsx +++ b/src/renderer/src/components/ui/textarea.tsx @@ -1,6 +1,6 @@ import * as React from "react" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const Textarea = React.forwardRef< HTMLTextAreaElement, diff --git a/src/renderer/src/components/ui/tooltip.tsx b/src/renderer/src/components/ui/tooltip.tsx index d7c99f7..f4c4223 100644 --- a/src/renderer/src/components/ui/tooltip.tsx +++ b/src/renderer/src/components/ui/tooltip.tsx @@ -1,7 +1,7 @@ import * as React from "react" import * as TooltipPrimitive from "@radix-ui/react-tooltip" -import { cn } from "src/renderer/src/lib/utils" +import { cn } from "@renderer/lib/utils" const TooltipProvider = TooltipPrimitive.Provider