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

    Props for MeetingCard component

    interface MeetingCardProps {
        allowCancel?: boolean;
        allowEdit?: boolean;
        allowJoin?: boolean;
        colors?: Partial<SchedulingColors>;
        countdownWarningMinutes?: number;
        icons?: Partial<SchedulingIcons>;
        labels?: Partial<MeetingCardLabels>;
        meeting: SchedulingMeeting;
        onCancel?: (meeting: SchedulingMeeting) => void;
        onClick?: (meeting: SchedulingMeeting) => void;
        onEdit?: (meeting: SchedulingMeeting) => void;
        onJoin?: (meeting: SchedulingMeeting) => void;
        onSendReminder?: (meeting: SchedulingMeeting) => void;
        selected?: boolean;
        showActions?: boolean;
        showCountdown?: boolean;
        styles?: Partial<SchedulingStyles>;
        sx?: SxProps<Theme>;
        variant?: "default" | "compact" | "detailed";
    }
    Index

    Properties

    allowCancel?: boolean

    Whether to allow cancelling

    allowEdit?: boolean

    Whether to allow editing

    allowJoin?: boolean

    Whether to allow joining

    colors?: Partial<SchedulingColors>

    Custom colors

    countdownWarningMinutes?: number

    Minutes before start when countdown chip turns warning color

    15
    
    icons?: Partial<SchedulingIcons>

    Custom icons

    labels?: Partial<MeetingCardLabels>

    Custom labels

    Meeting to display

    onCancel?: (meeting: SchedulingMeeting) => void

    Callback when cancel is clicked

    onClick?: (meeting: SchedulingMeeting) => void

    Callback when card is clicked

    onEdit?: (meeting: SchedulingMeeting) => void

    Callback when edit is clicked

    onJoin?: (meeting: SchedulingMeeting) => void

    Callback when join is clicked

    onSendReminder?: (meeting: SchedulingMeeting) => void

    Callback when reminder is clicked

    selected?: boolean

    Whether card is selected

    showActions?: boolean

    Whether to show action buttons

    showCountdown?: boolean

    Show countdown chip for upcoming meetings (compact variant)

    false
    
    styles?: Partial<SchedulingStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx prop

    variant?: "default" | "compact" | "detailed"

    Display variant