UNPKG

@pdf-viewer/react

Version:

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

9 lines (8 loc) 418 B
import { ButtonHTMLAttributes, PropsWithChildren } from 'react'; interface Props extends PropsWithChildren, ButtonHTMLAttributes<{}> { active?: boolean; } export declare const UIButton: import('react').ForwardRefExoticComponent<Props & import('react').RefAttributes<HTMLButtonElement>> | ((props: Props & { ref?: import('react').Ref<HTMLButtonElement> | undefined; }) => import('react').ReactNode); export {};