UNPKG

blackbull-sdk

Version:

An SDK for building applications on top of Blackbullswap

13 lines (12 loc) 468 B
import React from 'react'; import { DefaultTheme } from 'styled-components'; import { Colors } from './styled'; export declare const defaultColors: Colors; export declare const defaultTheme: DefaultTheme; declare type ThemeProviderProps = { children: React.ReactNode; theme?: DefaultTheme; }; export default function ThemeProvider({ children, theme }: ThemeProviderProps): JSX.Element; export declare const useTheme: () => DefaultTheme; export {};