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

    Variable defaultVideoGridStylesConst

    defaultVideoGridStyles: VideoGridStyles = ...

    Default style values for VideoGrid component.

    These values provide balanced defaults for various screen sizes and participant counts. The auto-calculated grid columns adapt to the number of participants for optimal space usage.

    import { defaultVideoGridStyles } from '@hiyve/react-ui';

    // Create compact styles for embedded use
    const compactStyles = {
    ...defaultVideoGridStyles,
    padding: 4,
    filmstripHeight: 80,
    filmstripTileWidth: 120,
    };
    // Force a specific column count
    <VideoGrid
    styles={{
    gridColumns: 4,
    transitionDuration: '0.5s',
    }}
    />