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;