breakpoints.ts 183 B

123456789
  1. export const Breakpoint = {
  2. XS: 'xs',
  3. SM: 'sm',
  4. MD: 'md',
  5. LG: 'lg',
  6. XL: 'xl',
  7. XXL: 'xxl',
  8. } as const;
  9. export type Breakpoint = typeof Breakpoint[keyof typeof Breakpoint];