reactjs-image-zoom
Version:
A react image component which zoom the image in the viewport of the website.
18 lines (17 loc) • 439 B
TypeScript
import React, { CSSProperties } from "react";
export interface CountProps {
className?: string;
height?: number;
width?: number;
maxwidth?: number;
repeat?: string;
position?: string;
bgsize?: string;
cursor?: string;
bordercolor?: string;
size?: number;
imagesrc?: string;
borderpixel?: number;
style?: CSSProperties;
}
export declare const Zoom: React.FC<CountProps>;