UNPKG

@indoqa/style-system

Version:

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

6 lines (5 loc) 245 B
import { BaseBreakpoints, Breakpoint } from '../theming/baseTheme'; export interface NamedBreakPoint extends Breakpoint { name: string; } export declare function sortBreakpoints<T extends BaseBreakpoints>(breakpoints: T): NamedBreakPoint[];