norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
11 lines (10 loc) • 320 B
TypeScript
type Breakpoint = {
cssProp: string;
cssPropUnits: string;
values: {
[key: number]: number;
}[];
mediaQueryType: 'max-width' | 'min-width' | 'max-height' | 'min-height';
};
export declare const breakpoints: (breakpoints: Breakpoint) => import("styled-components").RuleSet<object>;
export {};