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) => ( ); export const ArticleIcon = ({ size, height = 20, width = 20, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const MagazineIcon = ({ size, height = 20, width = 20, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const StaticPageIcon = ({ size, height = 20, width = 20, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const MasterUsersIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const MasterRoleIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const MasterUserLevelIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const MasterCategoryIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const AddvertiseIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const SuggestionsIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const CommentIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( );