UNPKG

react-zoom-image-hover

Version:
13 lines (12 loc) 293 B
import { FC, CSSProperties } from 'react'; interface Props { height: string | number; width: string | number; src: string; className?: string; transitionTime?: number; zoomScale?: number; style?: CSSProperties; } declare const Zoom: FC<Props>; export default Zoom;