cherry-styled-components
Version:
Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.
13 lines (12 loc) • 395 B
TypeScript
import { default as React } from 'react';
import { Theme } from '../utils';
interface ThemeContextProps {
setTheme: any;
}
export declare const ThemeContext: React.Context<ThemeContextProps>;
declare function CherryThemeProvider({ children, theme, themeDark, }: {
children: React.ReactNode;
theme: Theme;
themeDark?: Theme;
}): React.JSX.Element;
export { CherryThemeProvider };