UNPKG

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