Interface defining the props for the MainGridComponent.

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

Properties

children: ReactNode

The child components to be rendered inside the main grid.

backgroundColor: string

The background color of the main grid container.

height: number

The height of the main grid container.

width: number

The width of the main grid container.

showAspect?: boolean

Flag to determine if the aspect ratio should be shown.

true
timeBackgroundColor?: string

The background color of the meeting progress timer.

showTimer?: boolean

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

true
meetingProgressTime: string

The time to display on the meeting progress timer.