import * as React from "react"; import { IconSvgProps } from "@/types/globals"; export const DashboardUserIcon = ({ size, height = 48, width = 48, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardBriefcaseIcon = ({ size, height = 48, width = 48, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardMailboxIcon = ({ size, height = 48, width = 48, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardShareIcon = ({ size, height = 48, width = 48, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardSpeecIcon = ({ size, height = 48, width = 48, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardConnectIcon = ({ size, height = 48, width = 48, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardTopLeftPointIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardRightDownPointIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const DashboardCommentIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( );