33 lines
704 B
TypeScript
33 lines
704 B
TypeScript
import {
|
|
IconCalendarWeekFilled,
|
|
IconCircleDotted,
|
|
IconLayoutKanban,
|
|
IconTable,
|
|
} from "@tabler/icons-react";
|
|
import LinkData from "@/components/layout/Navbar/types/LinkData";
|
|
|
|
const buttonsData: LinkData[] = [
|
|
{
|
|
icon: IconLayoutKanban,
|
|
label: "Воронка",
|
|
href: "/deals?view=board",
|
|
},
|
|
{
|
|
icon: IconTable,
|
|
label: "Таблица",
|
|
href: "/deals?view=table",
|
|
},
|
|
{
|
|
icon: IconCalendarWeekFilled,
|
|
label: "Расписание",
|
|
href: "/deals?view=schedule",
|
|
},
|
|
{
|
|
icon: IconCircleDotted,
|
|
label: "Label 3",
|
|
href: "/hihihaha",
|
|
},
|
|
];
|
|
|
|
export default buttonsData;
|