diff --git a/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx b/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx index 49890d605..06007f470 100644 --- a/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx +++ b/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx @@ -5,6 +5,7 @@ import 'emoji-mart/css/emoji-mart.css'; import clsx from 'clsx'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import { useApolloClient, useMutation } from '@apollo/client'; + import { ReactComponent as AttachmentIcon } from '../../../../assets/images/icons/Attachment/Unselected.svg'; import { ReactComponent as AttachmentIconSelected } from '../../../../assets/images/icons/Attachment/Selected.svg'; import styles from './ChatInput.module.css'; @@ -18,7 +19,6 @@ import { AddAttachment } from '../AddAttachment/AddAttachment'; import { CREATE_MEDIA_MESSAGE } from '../../../../graphql/mutations/Chat'; import { is24HourWindowOver } from '../../../../common/constants'; - export interface ChatInputProps { onSendMessage(content: string, mediaId: string | null, messageType: string): any; handleHeightChange(newHeight: number): void;