@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
12 lines (11 loc) • 326 B
TypeScript
export interface Breakpoints {
[key: string]: number[];
}
/**
* Responsive breakpoints and their values.
*/
export declare const breakpoints: Breakpoints;
/**
* Available window breakpoints. The emtpy string is required for generating class names without breakpoints.
*/
export declare const breakpointKeys: string[];