@pdf-viewer/react
Version:
A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.
9 lines (8 loc) • 422 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>> | ((props: Props & {
ref?: import('react').Ref<HTMLInputElement> | undefined;
}) => ReactNode);
export {};