@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
14 lines (13 loc) • 444 B
TypeScript
import React from 'react';
export * from './utils';
export * from './types';
export * from './styles';
export declare const ColorModeContext: React.Context<{
colorMode?: string | undefined;
toggleColorMode?: any;
}>;
export declare const ColorModeProvider: ({ colorMode, children, onChange, }: {
colorMode?: string | undefined;
children: any;
onChange?: ((mode: string) => void) | undefined;
}) => JSX.Element;