export interface ScreenSizeMap {
    handset: number,
    tablet: number,
    web: number,
    wide: number

    [key: string]: number
}
