fannypack-v5
Version:
An accessible, composable, and friendly React UI Kit
11 lines (10 loc) • 382 B
TypeScript
import * as React from 'react';
declare type Props = {
children?: React.ReactNode;
component: string | React.ComponentType<any>;
enableRenderPropsComposition?: boolean;
use?: string | React.ComponentType<any>;
htmlProps: any;
};
export declare function createElement({ children, component, enableRenderPropsComposition, htmlProps, use }: Props): any;
export {};