UNPKG

@slashid/react-primitives

Version:

Primitive components for the /id React SDK

14 lines 428 B
import { ReactNode } from "react"; import { TextConfig } from "./types"; export interface ITextContext { text: TextConfig; } export declare const initialContextValue: ITextContext; export declare const TextContext: import("react").Context<ITextContext>; type Props = { text: TextConfig; children: ReactNode; }; export declare const TextProvider: React.FC<Props>; export {}; //# sourceMappingURL=text-context.d.ts.map