UNPKG

profile-plus

Version:

16 lines (15 loc) 629 B
import React, { ReactNode } from 'react'; interface ProfilePictureUploaderProps { thumbnailHeight?: number; thumbnailWidth?: number; componentHeight?: number; aspectRatio?: number; property?: string; confirmText?: string; className?: string; uploadIcon?: any; renderAction?: ReactNode; onUpdate?: (profilePictureContentUrl: string) => void; } export declare const ProfilePictureUploader: ({ thumbnailHeight, componentHeight, thumbnailWidth, aspectRatio, className, property, confirmText, renderAction, uploadIcon, onUpdate, }: ProfilePictureUploaderProps) => React.JSX.Element; export {};