UNPKG

@spicy-ui/core

Version:

A themable and extensible React UI library, ready to use out of the box

8 lines (7 loc) 239 B
import * as React from 'react'; export interface ThemeProps { disableInjection?: boolean; /** Custom theme to be merged with the default theme. */ theme?: any; } export declare const ThemeProvider: React.FC<ThemeProps>;