@kadconsulting/dry
Version:
KAD Reusable Component Library
20 lines (19 loc) • 431 B
TypeScript
export declare enum ViewportSizes {
Desktop = "desktop",
Tablet = "tablet",
Mobile = "mobile"
}
export declare enum Layouts {
Desktop = "desktop",
Tablet = "tablet",
Mobile = "mobile"
}
/** { breakpointName: CSS px value string } */
export type Breakpoints = {
[key: string]: string;
desktopMin: string;
tabletMax: string;
tabletMin: string;
mobileMax: string;
mobileMin: string;
};