cosmo-ui
Version:
Common React components
15 lines (11 loc) • 328 B
text/typescript
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
}