@styleless-ui/react
Version:
Completely unstyled, headless and accessible React UI components.
9 lines (8 loc) • 303 B
TypeScript
import * as React from "react";
import { type PortalConfigContextValue } from "./PortalConfigContext";
export interface Props {
children: React.ReactNode;
config: PortalConfigContextValue;
}
declare const PortalConfigProvider: (props: Props) => JSX.Element;
export default PortalConfigProvider;