chore: icon revamp and refactor (#2447)

* chore: svg icons added in plane/ui package

* chore: swap priority and state icon with plane/ui icons

* chore: replace core folder icons with lucide and plane ui icons

* style: priority icon size

* chore: replace icons with lucide and plane/ui icons

* chore: replace cycle folder icons with lucide and plane/ui icons

* chore: replace existing icons with lucide and plane/ui icons

* chore: replace existing icons with lucide and plane/ui icons

* chore: replace existing icons with lucide and plane/ui icons

* chore: replace existing icons with lucide and plane/ui icons

* chore: replace existing icons with lucide and plane/ui icons

* fix: build error

* fix: build error

* fix: build error
This commit is contained in:
Anmol Singh Bhatia
2023-10-16 20:27:22 +05:30
committed by GitHub
parent 1fc5d2bd45
commit 651b252c23
270 changed files with 2567 additions and 1480 deletions

View File

@@ -21,8 +21,8 @@ import {
GithubImportConfirm,
} from "components/integration";
// icons
import { CogIcon, CloudUploadIcon, UsersIcon, CheckIcon } from "components/icons";
import { ArrowLeftIcon, ListBulletIcon } from "@heroicons/react/24/outline";
import { UserGroupIcon } from "@plane/ui";
import { ArrowLeft, Check, List, Settings, UploadCloud } from "lucide-react";
// images
import GithubLogo from "public/services/github.png";
// types
@@ -59,23 +59,23 @@ const integrationWorkflowData = [
{
title: "Configure",
key: "import-configure",
icon: CogIcon,
icon: Settings,
},
{
title: "Import Data",
key: "import-data",
icon: CloudUploadIcon,
icon: UploadCloud,
},
{ title: "Issues", key: "repo-details", icon: ListBulletIcon },
{ title: "Issues", key: "repo-details", icon: List },
{
title: "Users",
key: "import-users",
icon: UsersIcon,
icon: UserGroupIcon,
},
{
title: "Confirm",
key: "import-confirm",
icon: CheckIcon,
icon: Check,
},
];
@@ -166,7 +166,7 @@ export const GithubImporterRoot: React.FC<Props> = ({ user }) => {
<div className="space-y-2">
<Link href={`/${workspaceSlug}/settings/imports`}>
<div className="inline-flex cursor-pointer items-center gap-2 text-sm font-medium text-custom-text-200 hover:text-custom-text-100">
<ArrowLeftIcon className="h-3 w-3" />
<ArrowLeft className="h-3 w-3" />
<div>Cancel import & go back</div>
</div>
</Link>