Hiyve Components - v1.0.0
    Preparing search index...

    Variable defaultChatPanelIconsConst

    defaultChatPanelIcons: ChatPanelIcons = ...

    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.

    import { defaultChatPanelIcons } from '@hiyve/react-collaboration';
    import { FaPaperPlane, FaComments } from 'react-icons/fa';

    // Use Font Awesome icons
    const customIcons = {
    ...defaultChatPanelIcons,
    send: <FaPaperPlane />,
    chat: <FaComments />,
    };