mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
fix: build errors
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import React from "react";
|
||||
// helpers
|
||||
import { cn } from "../../helpers";
|
||||
import { cn } from "../utils";
|
||||
// components
|
||||
import { Checkbox } from "./checkbox";
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user