Improve icons
This commit is contained in:
parent
bc115d2e8e
commit
2abad851cb
1 changed files with 6 additions and 4 deletions
|
|
@ -1,13 +1,15 @@
|
|||
import { twMerge } from "tailwind-merge";
|
||||
import {
|
||||
TableIcon,
|
||||
SettingsIcon,
|
||||
HelpCircleIcon,
|
||||
SendIcon,
|
||||
ChevronRightIcon,
|
||||
ConstructionIcon,
|
||||
PlusIcon,
|
||||
MinusIcon,
|
||||
ReceiptTextIcon,
|
||||
StickyNoteIcon,
|
||||
KanbanIcon,
|
||||
} from "lucide-react";
|
||||
import { Link as RouterLink } from "react-router-dom";
|
||||
import { Separator, Switch } from "react-aria-components";
|
||||
|
|
@ -255,17 +257,17 @@ export function MainNavigation({ isCollapsed }: { isCollapsed: boolean }) {
|
|||
{
|
||||
path: "/devis",
|
||||
label: "Devis",
|
||||
icon: <SettingsIcon className="w-5 h-5" />,
|
||||
icon: <StickyNoteIcon className="w-5 h-5" />,
|
||||
},
|
||||
{
|
||||
path: "/factures",
|
||||
label: "Factures",
|
||||
icon: <SettingsIcon className="w-5 h-5" />,
|
||||
icon: <ReceiptTextIcon className="w-5 h-5" />,
|
||||
},
|
||||
{
|
||||
path: "/planning",
|
||||
label: "Planning",
|
||||
icon: <SettingsIcon className="w-5 h-5" />,
|
||||
icon: <KanbanIcon className="w-5 h-5" />,
|
||||
},
|
||||
{
|
||||
path: "/chantiers",
|
||||
|
|
|
|||
Loading…
Reference in a new issue