UNPKG

@crossed/theme

Version:

unicons

29 lines (26 loc) 461 B
/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import type { Spaces } from './types/space'; export const space = { none: 0, xxs: 2, xs: 4, sm: 6, md: 8, lg: 12, xl: 16, xxl: 20, '3xl': 24, '4xl': 32, '5xl': 40, '6xl': 48, '7xl': 64, '8xl': 80, '9xl': 96, '10xl': 128, '11xl': 160, } as const satisfies Spaces;