Interface MediaQueryBreakpointConfig

interface MediaQueryBreakpointConfig {
    large: boolean;
    medium: boolean;
    platform:
        | "ios"
        | "android"
        | "windows"
        | "macos"
        | "web";
    small: boolean;
    xLarge: boolean;
    xSmall: boolean;
    xxLarge: boolean;
}

Properties

large: boolean
medium: boolean
platform:
    | "ios"
    | "android"
    | "windows"
    | "macos"
    | "web"
small: boolean
xLarge: boolean
xSmall: boolean
xxLarge: boolean