reakit
Version:
Toolkit for building accessible rich web apps with React
7 lines (6 loc) • 329 B
TypeScript
/// <reference types="react" />
import { SystemProviderProps } from "reakit-system/SystemProvider";
export declare type ProviderProps = Partial<SystemProviderProps> & {
unstable_prefix?: string;
};
export declare function Provider({ unstable_prefix: prefix, unstable_system: system, children, }: ProviderProps): JSX.Element;