welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
16 lines (15 loc) • 516 B
TypeScript
import { default as React } from 'react';
import { ThemeValues } from '../../theme';
export interface WuiProviderProps {
children?: React.ReactNode;
hasGlobalStyle?: boolean;
reactRootId?: string;
shouldHideFocusRingOnClick?: boolean;
theme: ThemeValues;
useReset?: boolean;
}
export declare const WuiProvider: React.FC<WuiProviderProps>;
declare const GlobalStyle: React.NamedExoticComponent<import('styled-components').ExecutionProps & {
useReset?: boolean;
}>;
export { GlobalStyle };