Interface defining the props for the OtherGridComponent.

interface OtherGridComponentOptions {
    backgroundColor: string;
    children: ReactNode;
    width: string | number;
    height: string | number;
    showAspect?: boolean;
    timeBackgroundColor?: string;
    showTimer: boolean;
    meetingProgressTime: string;
}

Properties

backgroundColor: string

The background color of the grid.

children: ReactNode

The child components to be rendered inside the grid.

width: string | number

The width of the grid.

height: string | number

The height of the grid.

showAspect?: boolean

Flag to determine if the grid should be displayed.

true
timeBackgroundColor?: string

The background color of the meeting progress timer.

showTimer: boolean

Flag to determine if the meeting progress timer should be displayed.

meetingProgressTime: string

The time to display on the meeting progress timer.