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

    Interface RoomCardIcons

    Customizable icons for the RoomCard component.

    import { PlayArrow, Delete, Settings, ContentCopy, Star, Link } from '@mui/icons-material';

    const customIcons: Partial<RoomCardIcons> = {
    startIcon: <PlayArrow />,
    deleteIcon: <Delete />,
    settingsIcon: <Settings />,
    };
    interface RoomCardIcons {
        copyLinkIcon: ReactNode;
        deleteIcon: ReactNode;
        linkBadgeIcon: ReactNode;
        settingsIcon: ReactNode;
        startIcon: ReactNode;
        staticBadgeIcon: ReactNode;
    }
    Index

    Properties

    copyLinkIcon: ReactNode

    Icon for the copy link button

    deleteIcon: ReactNode

    Icon for the delete button

    linkBadgeIcon: ReactNode

    Icon for the link-based room badge

    settingsIcon: ReactNode

    Icon for the settings button

    startIcon: ReactNode

    Icon for the start/join button

    staticBadgeIcon: ReactNode

    Icon for the static room badge