import * as React from "react"; import { IconSvgProps } from "@/types/globals"; export const MenuBurgerIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const HomeIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const Submenu1Icon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const Submenu2Icon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const InfoCircleIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const MinusCircleIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const TableIcon = ({ size, height = 24, width = 22, fill = "currentColor", ...props }: IconSvgProps) => ( );