fix: build errors

This commit is contained in:
sriramveeraghanta
2025-08-11 18:56:28 +05:30
parent 9060992aaa
commit da90f2e791
3 changed files with 5 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import React from "react";
// helpers
import { cn } from "../../helpers";
import { cn } from "../utils";
// components
import { Checkbox } from "./checkbox";

View File

@@ -1,7 +1,7 @@
import { X } from "lucide-react";
import * as React from "react";
// helpers
import { cn } from "../../helpers";
import { cn } from "../utils";
export interface PillInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange"> {
mode?: "primary" | "transparent" | "true-transparent";

View File

@@ -1,7 +1,8 @@
import * as React from "react";
import { ISvgIcons } from "./type";
// helpers
import { cn } from "../../helpers";
import { cn } from "../utils";
// types
import { ISvgIcons } from "./type";
export const SubscribeIcon: React.FC<ISvgIcons> = ({ className = "text-current", ...rest }) => (
<svg