style: sidebar icon color (#444)

This commit is contained in:
Anmol Singh Bhatia 2023-03-15 17:41:52 +05:30 committed by GitHub
parent 164072e3cc
commit ae8902e815
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 6 deletions

View file

@ -6,8 +6,8 @@ import { Disclosure, Transition } from "@headlessui/react";
// ui
import { CustomMenu } from "components/ui";
// icons
import { ChevronDownIcon, Cog6ToothIcon } from "@heroicons/react/24/outline";
import { ContrastIcon, LayerDiagonalIcon, PeopleGroupIcon } from "components/icons";
import { ChevronDownIcon } from "@heroicons/react/24/outline";
import { ContrastIcon, LayerDiagonalIcon, PeopleGroupIcon, SettingIcon } from "components/icons";
// helpers
import { truncateText } from "helpers/string.helper";
// types
@ -41,7 +41,7 @@ const navigation = (workspaceSlug: string, projectId: string) => [
{
name: "Settings",
href: `/${workspaceSlug}/projects/${projectId}/settings`,
icon: Cog6ToothIcon,
icon: SettingIcon,
},
];