diff --git a/common/components/ui/alert-dialog.tsx b/common/components/ui/alert-dialog.tsx index 4454253a..0ec5964d 100644 --- a/common/components/ui/alert-dialog.tsx +++ b/common/components/ui/alert-dialog.tsx @@ -1,8 +1,8 @@ import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"; import * as React from "react"; -import { buttonVariants } from "~/components/ui/button"; -import { cn } from "~/lib/utils"; +import { buttonVariants } from "components/ui/button"; +import { cn } from "lib/utils"; const AlertDialog = AlertDialogPrimitive.Root; diff --git a/common/components/ui/button.tsx b/common/components/ui/button.tsx index cfd58e77..855a3a5e 100644 --- a/common/components/ui/button.tsx +++ b/common/components/ui/button.tsx @@ -2,7 +2,7 @@ import { Slot } from "@radix-ui/react-slot"; import { type VariantProps, cva } from "class-variance-authority"; import * as React from "react"; -import { cn } from "~/lib/utils"; +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", diff --git a/common/components/ui/card.tsx b/common/components/ui/card.tsx index 9f30d255..22b1cfc9 100644 --- a/common/components/ui/card.tsx +++ b/common/components/ui/card.tsx @@ -1,6 +1,6 @@ import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const Card = React.forwardRef< HTMLDivElement, diff --git a/common/components/ui/chart.tsx b/common/components/ui/chart.tsx index de70dd08..125c99e3 100644 --- a/common/components/ui/chart.tsx +++ b/common/components/ui/chart.tsx @@ -1,7 +1,7 @@ import * as React from "react"; import * as RechartsPrimitive from "recharts"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; // Format: { THEME_NAME: CSS_SELECTOR } const THEMES = { light: "", dark: ".dark" } as const; diff --git a/common/components/ui/drawer.tsx b/common/components/ui/drawer.tsx index b5b8bb72..ec4a950c 100644 --- a/common/components/ui/drawer.tsx +++ b/common/components/ui/drawer.tsx @@ -1,7 +1,7 @@ import * as React from "react"; import { Drawer as DrawerPrimitive } from "vaul"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const Drawer = ({ shouldScaleBackground = true, diff --git a/common/components/ui/input-otp.tsx b/common/components/ui/input-otp.tsx index ea82f11f..e69aa2e6 100644 --- a/common/components/ui/input-otp.tsx +++ b/common/components/ui/input-otp.tsx @@ -2,7 +2,7 @@ import { OTPInput, OTPInputContext } from "input-otp"; import { Dot } from "lucide-react"; import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const InputOTP = React.forwardRef< React.ElementRef, diff --git a/common/components/ui/input.tsx b/common/components/ui/input.tsx index 325413cc..94df5509 100644 --- a/common/components/ui/input.tsx +++ b/common/components/ui/input.tsx @@ -1,6 +1,6 @@ import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; export interface InputProps extends React.InputHTMLAttributes {} diff --git a/common/components/ui/label.tsx b/common/components/ui/label.tsx index f559035d..ea3a7d31 100644 --- a/common/components/ui/label.tsx +++ b/common/components/ui/label.tsx @@ -2,7 +2,7 @@ import * as LabelPrimitive from "@radix-ui/react-label"; import { type VariantProps, cva } from "class-variance-authority"; import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const labelVariants = cva( "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70", diff --git a/common/components/ui/radio-group.tsx b/common/components/ui/radio-group.tsx index d58becdb..6d66e43f 100644 --- a/common/components/ui/radio-group.tsx +++ b/common/components/ui/radio-group.tsx @@ -2,7 +2,7 @@ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group"; import { Circle } from "lucide-react"; import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const RadioGroup = React.forwardRef< React.ElementRef, diff --git a/common/components/ui/select.tsx b/common/components/ui/select.tsx index aaa155e8..b5d0d6a0 100644 --- a/common/components/ui/select.tsx +++ b/common/components/ui/select.tsx @@ -2,7 +2,7 @@ import * as SelectPrimitive from "@radix-ui/react-select"; import { Check, ChevronDown, ChevronUp } from "lucide-react"; import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const Select = SelectPrimitive.Root; diff --git a/common/components/ui/table.tsx b/common/components/ui/table.tsx index 3cb90249..4b8c0551 100644 --- a/common/components/ui/table.tsx +++ b/common/components/ui/table.tsx @@ -1,6 +1,6 @@ import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; const Table = React.forwardRef< HTMLTableElement, diff --git a/common/components/ui/textarea.tsx b/common/components/ui/textarea.tsx index 26f564d0..9f2090d1 100644 --- a/common/components/ui/textarea.tsx +++ b/common/components/ui/textarea.tsx @@ -1,6 +1,6 @@ import * as React from "react"; -import { cn } from "~/lib/utils"; +import { cn } from "lib/utils"; export interface TextareaProps extends React.TextareaHTMLAttributes {}