UNPKG

cosmo-ui

Version:
15 lines (11 loc) 328 B
import { Breakpoint } from '../interfaces' export type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' export interface StylableComponent { id?: string className?: string // containerClassName?: string // I don't think this should be on every component style?: any } export interface Styles { [key: string]: any }