UNPKG

react-simple-image-zoom

Version:

Simple image zoom/magnification component for react, using react portals

10 lines (9 loc) 252 B
/// <reference types="react" /> export interface MagnifyingGlassProps { x: number; y: number; width: number; height: number; } declare const MagnifyingGlass: (props: MagnifyingGlassProps) => JSX.Element; export default MagnifyingGlass;