@pdf-viewer/react
Version:
A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.
7 lines (6 loc) • 302 B
TypeScript
import { ButtonHTMLAttributes, PropsWithChildren } from 'react';
interface Props extends PropsWithChildren, ButtonHTMLAttributes<{}> {
active?: boolean;
}
export declare const UIButton: import('react').ForwardRefExoticComponent<Props & import('react').RefAttributes<HTMLButtonElement>>;
export {};