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 }