import React, { JSXElementConstructor } from "react"; import { IconProps, IconWrapper } from "constants/IconConstants"; import { ReactComponent as UpdatesIcon } from "assets/icons/help/updates.svg"; import { Icon } from "@blueprintjs/core"; import GithubIcon from "remixicon-react/GithubFillIcon"; import DocumentIcon from "remixicon-react/FileTextFillIcon"; import HelpIcon from "remixicon-react/QuestionMarkIcon"; import DiscordIcon from "remixicon-react/DiscordFillIcon"; import OpenLinkIcon from "remixicon-react/ShareBoxLineIcon"; /* eslint-disable react/display-name */ export const HelpIcons: { [id: string]: JSXElementConstructor; } = { OPEN_LINK: (props: IconProps) => ( ), DOCUMENT: (props: IconProps) => ( ), HELP_ICON: (props: IconProps) => ( ), CLOSE_ICON: (props: IconProps) => ( ), GITHUB: (props: IconProps) => ( ), CHAT: (props: IconProps) => ( ), DISCORD: (props: IconProps) => ( ), UPDATES: (props: IconProps) => ( ), }; export type HelpIconName = keyof typeof HelpIcons;