UNPKG

@indoqa/style-system

Version:

A style system for React with Typescript typed theme support and several base components.

8 lines (7 loc) 298 B
import { BaseBreakpoints, Breakpoint } from './baseTheme'; export declare const toMinMediaQuery: (breakpoint: Breakpoint) => string; interface MediaQueryMap { [key: string]: string; } export declare function toMediaQueryMap<B extends BaseBreakpoints>(breakpoints: B): MediaQueryMap; export {};