···11"use client";
2233import { cva, type VariantProps } from "class-variance-authority";
44-import type * as React from "react";
44+import * as React from "react";
55import { Button } from "@/components/ui/button";
66import { Input } from "@/components/ui/input";
77import { Textarea } from "@/components/ui/textarea";
+1-1
src/components/ui/input.tsx
···11import { Input as InputPrimitive } from "@base-ui/react/input";
22-import type * as React from "react";
22+import * as React from "react";
3344import { cn } from "@/lib/utils";
55
+1-1
src/components/ui/label.tsx
···11"use client";
2233-import type * as React from "react";
33+import * as React from "react";
4455import { cn } from "@/lib/utils";
66
+1-1
src/components/ui/select.tsx
···2233import { Select as SelectPrimitive } from "@base-ui/react/select";
44import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from "lucide-react";
55-import type * as React from "react";
55+import * as React from "react";
66import { cn } from "@/lib/utils";
7788const Select = SelectPrimitive.Root;
+1-1
src/components/ui/textarea.tsx
···11-import type * as React from "react";
11+import * as React from "react";
2233import { cn } from "@/lib/utils";
44