@pdf-viewer/react
Version:
The PDF Viewer component for React and Next.js
7 lines (6 loc) • 323 B
TypeScript
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 {};