UNPKG

@dotconnor/grommet

Version:

focus on the essential experience

21 lines (17 loc) 481 B
import * as React from 'react'; import { ThemeType } from '../../themes'; import { BackgroundType } from '../../utils'; export interface GrommetProps { background?: BackgroundType; containerTarget?: HTMLElement; cssVars?: boolean; dir?: 'rtl'; full?: boolean; plain?: boolean; theme?: ThemeType; themeMode?: 'dark' | 'light'; userAgent?: string; } declare const Grommet: React.ComponentClass<GrommetProps & JSX.IntrinsicElements['div']>; export { Grommet };