import React from 'react' import { FC } from 'react' import { ThemeProvider as StyledThemeProvider, ThemeProviderProps, } from 'styled-components' import { themeDefault, themeDark, themeLight } from './themes' import { Theme } from './types' export const ThemeProvider: FC> = (props) => { const { theme = themeDefault, ...rest } = props return } type BoundThemeProvider = FC, 'theme'>> export const LightThemeProvider: BoundThemeProvider = (props) => { return } export const DarkThemeProvider: BoundThemeProvider = (props) => { return }