UNPKG

@pdf-viewer/react

Version:

A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.

7 lines (6 loc) 323 B
import { InputHTMLAttributes, PropsWithChildren, ReactNode } from 'react'; interface Props extends InputHTMLAttributes<HTMLInputElement>, PropsWithChildren { icon?: ReactNode; } export declare const UIInput: import('react').ForwardRefExoticComponent<Props & import('react').RefAttributes<HTMLInputElement>>; export {};