mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
fix: lucide icon constants import (#3426)
This commit is contained in:
@@ -1,11 +1,7 @@
|
||||
import { FC } from "react";
|
||||
// constants
|
||||
import { LUCIDE_ICONS_LIST } from "@plane/constants";
|
||||
// types
|
||||
// plane imports
|
||||
import { TLogoProps } from "@plane/types";
|
||||
// ui
|
||||
import { EpicIcon, LayersIcon } from "@plane/ui";
|
||||
// helpers
|
||||
import { EpicIcon, LayersIcon, LUCIDE_ICONS_LIST } from "@plane/ui";
|
||||
import { cn, generateIconColors } from "@plane/utils";
|
||||
|
||||
export type TIssueTypeLogoSize = "xs" | "sm" | "md" | "lg" | "xl";
|
||||
|
||||
@@ -1,12 +1,9 @@
|
||||
import React, { useState } from "react";
|
||||
// components
|
||||
import { Check, Search } from "lucide-react";
|
||||
// plane imports
|
||||
import { DEFAULT_BACKGROUND_COLORS, LUCIDE_ICONS_LIST } from "@plane/constants";
|
||||
import { DEFAULT_BACKGROUND_COLORS } from "@plane/constants";
|
||||
import { TLogoProps } from "@plane/types";
|
||||
// ui
|
||||
import { ColorPicker, Input } from "@plane/ui";
|
||||
// helpers
|
||||
import { ColorPicker, Input, LUCIDE_ICONS_LIST } from "@plane/ui";
|
||||
import { generateIconColors } from "@plane/utils";
|
||||
|
||||
export type TIconsListProps = {
|
||||
|
||||
@@ -3,9 +3,9 @@ import { observer } from "mobx-react";
|
||||
// ui
|
||||
import { useTranslation } from "@plane/i18n";
|
||||
import { TIssueType } from "@plane/types";
|
||||
import { EModalPosition, EModalWidth, ModalCore, setToast, TOAST_TYPE } from "@plane/ui";
|
||||
import { EModalPosition, EModalWidth, getRandomIconName, ModalCore, setToast, TOAST_TYPE } from "@plane/ui";
|
||||
// helpers
|
||||
import { getRandomBackgroundColor, getRandomIconName } from "@plane/utils";
|
||||
import { getRandomBackgroundColor } from "@plane/utils";
|
||||
// plane web components
|
||||
import { CreateOrUpdateIssueTypeForm } from "@/plane-web/components/issue-types/";
|
||||
// plane web
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import React, { FC } from "react";
|
||||
import { TriangleAlert } from "lucide-react";
|
||||
// plane imports
|
||||
import { LUCIDE_ICONS_LIST } from "@plane/constants";
|
||||
import { TLogoProps } from "@plane/types";
|
||||
import { LUCIDE_ICONS_LIST } from "@plane/ui";
|
||||
import { cn } from "@plane/utils";
|
||||
|
||||
type Props = {
|
||||
|
||||
@@ -3,10 +3,9 @@ import { observer } from "mobx-react";
|
||||
// plane imports
|
||||
import { EIssuePropertyType } from "@plane/constants";
|
||||
import { IIssueProperty, IIssueType, TIssueType } from "@plane/types";
|
||||
import { EModalPosition, EModalWidth, ModalCore } from "@plane/ui";
|
||||
import { EModalPosition, EModalWidth, ModalCore, getRandomIconName } from "@plane/ui";
|
||||
import {
|
||||
getRandomBackgroundColor,
|
||||
getRandomIconName,
|
||||
mockCreateCustomProperty,
|
||||
mockCreateCustomPropertyOption,
|
||||
mockCreateWorkItemType,
|
||||
|
||||
Reference in New Issue
Block a user