UNPKG

react-advanced-cropper

Version:

The react cropper library that gives the possibility to create croppers exactly suited for your website design

8 lines (7 loc) 321 B
import React, { HTMLAttributes } from 'react'; interface Props extends HTMLAttributes<HTMLImageElement> { src?: string | null; crossOrigin?: 'anonymous' | 'use-credentials' | boolean; } export declare const CropperSource: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLImageElement>>; export {};