UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

8 lines (7 loc) 242 B
import type { ComponentType } from "react"; type FileInputProps = { capture?: string; accept: string; }; declare const asUploadButton: (Component: ComponentType<any>, InputProps: FileInputProps) => any; export default asUploadButton;