carbon-components-svelte/types/Breakpoint/breakpoints.d.ts
Enrico Sacchetti a4ef8d2db3
chore: update guide and scripts
lint files
2023-01-13 15:19:27 -05:00

11 lines
327 B
TypeScript

/**
* Pixel sizes of Carbon grid breakpoints.
* @type {Record<BreakpointSize, BreakpointValue>}
*/
export const breakpoints: Record<BreakpointSize, BreakpointValue>;
export type BreakpointSize = "sm" | "md" | "lg" | "xlg" | "max";
export type BreakpointValue = 320 | 672 | 1056 | 1312 | 1584;
export default breakpoints;