1 | // This file is generated automatically by scripts/build/cssToTs/cssToTs.ts, please don't edit.
|
2 |
|
3 | import { assert } from "tsafe/assert";
|
4 | import type { Extends } from "tsafe";
|
5 |
|
6 | export const breakpointsValuesUnit = "em";
|
7 |
|
8 | export const breakpointKeys = ["xs", "sm", "md", "lg", "xl"] as const;
|
9 |
|
10 | export type BreakpointKeys = typeof breakpointKeys[number];
|
11 |
|
12 | export const breakpointsValues = {
|
13 | "xs": 0,
|
14 | "sm": 36,
|
15 | "md": 48,
|
16 | "lg": 62,
|
17 | "xl": 78
|
18 | } as const;
|
19 |
|
20 | assert<Extends<typeof breakpointsValues, Record<BreakpointKeys, number>>>();
|