UNPKG

react-advanced-cropper

Version:

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

14 lines (13 loc) 345 B
import { FC, ReactNode } from 'react'; import { CropperTransitions } from 'advanced-cropper'; interface Props { className?: string; transitions?: CropperTransitions; width?: number; height?: number; left?: number; top?: number; children?: ReactNode; } export declare const ArtificialTransition: FC<Props>; export {};