UNPKG

@geezee/react-ui

Version:

Modern and minimalist React UI library.

8 lines (7 loc) 262 B
import React, { PropsWithChildren } from 'react'; import { ThemeParam } from '../styles/theme-provider/theme-provider'; export interface Props { theme?: ThemeParam; } declare const CfxProvider: React.FC<PropsWithChildren<Props>>; export default CfxProvider;