@crossed/theme
Version:
unicons
19 lines (16 loc) • 331 B
text/typescript
/**
* 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 = {
xxs: 4,
xs: 8,
sm: 12,
md: 16,
lg: 24,
xl: 32,
xxl: 40,
} as const satisfies Spaces;