UNPKG

@dotconnor/grommet

Version:

focus on the essential experience

12 lines (7 loc) 249 B
import * as React from 'react'; export type ThemeValue = object; export interface ThemeContextI extends React.Context<ThemeValue> { Extend: React.FC<{ value: ThemeValue }>; } declare const ThemeContext: ThemeContextI; export { ThemeContext };