jiro-ui
Version:
A Mithril.js UI library based from construct-ui
9 lines (8 loc) • 351 B
TypeScript
export declare const Breakpoints: {
xs: "(max-width: 575.98px)";
sm: "(min-width: 576px) and (max-width: 767.98px)";
md: "(min-width: 768px) and (max-width: 991.98px)";
lg: "(min-width: 992px) and (max-width: 1199.98px)";
xl: "(min-width: 1200px)";
};
export declare type Breakpoint = typeof Breakpoints[keyof typeof Breakpoints];