UNPKG

react-render-prop-type

Version:

Handy helper for components which need to have render prop.

4 lines (3 loc) 270 B
import type { FunctionComponent } from 'react'; export declare type RP<P = unknown, N extends string = 'children'> = RenderProp<P, N>; export declare type RenderProp<Props = unknown, PropName extends string = 'children'> = Record<PropName, FunctionComponent<Props>>;