Const
Default Material-UI icons for the ChatPanel component.
All icons are from the @mui/icons-material package. Replace any icon by passing a custom React node in the icons prop.
@mui/icons-material
icons
import { defaultChatPanelIcons } from '@hiyve/react-collaboration';import { FaPaperPlane, FaComments } from 'react-icons/fa';// Use Font Awesome iconsconst customIcons = { ...defaultChatPanelIcons, send: <FaPaperPlane />, chat: <FaComments />,}; Copy
import { defaultChatPanelIcons } from '@hiyve/react-collaboration';import { FaPaperPlane, FaComments } from 'react-icons/fa';// Use Font Awesome iconsconst customIcons = { ...defaultChatPanelIcons, send: <FaPaperPlane />, chat: <FaComments />,};
Default Material-UI icons for the ChatPanel component.