UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

11 lines (10 loc) 323 B
import React from "react"; import InputProps from "./InputProps"; import { JSXElementProps } from "../props"; export interface Props extends InputProps<File | File[]> { hint?: never; boxProps?: JSXElementProps; badgeType?: string; } declare const InputFile: React.FC<Props>; export default InputFile;