@pdf-viewer/react
Version:
The PDF Viewer component for React and Next.js
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 {};