From a8d52f512b24eb12695184a1b563b3c9c188922c Mon Sep 17 00:00:00 2001 From: "Irsyad A. Panjaitan" Date: Sun, 13 Oct 2024 16:37:26 +0700 Subject: [PATCH] lfg --- components/ui/text-field.tsx | 2 +- utils/classes.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ui/text-field.tsx b/components/ui/text-field.tsx index f692c74b..1e00b921 100644 --- a/components/ui/text-field.tsx +++ b/components/ui/text-field.tsx @@ -2,7 +2,7 @@ import * as React from "react" -import { TextInputDOMProps } from "@react-types/shared" +import type { TextInputDOMProps } from "@react-types/shared" import { IconEye, IconEyeClosed, IconLoader } from "justd-icons" import { Button as ButtonPrimitive, diff --git a/utils/classes.ts b/utils/classes.ts index f9a8329e..c9ac7848 100644 --- a/utils/classes.ts +++ b/utils/classes.ts @@ -1,4 +1,4 @@ -import { ClassValue, clsx } from "clsx" +import { type ClassValue, clsx } from "clsx" import { twMerge } from "tailwind-merge" const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs))