@readyplayerme/visage
Version:
Easily display Ready Player Me avatars and 3D on the web.
11 lines (10 loc) • 306 B
TypeScript
import { FC, ReactNode } from 'react';
interface DropContainerProps {
children?: ReactNode | ReactNode[];
placeholder?: string;
}
/**
* This component is only for using in Storybook for showcasing drag'n'drop functionality.
*/
export declare const FileDropper: FC<DropContainerProps>;
export {};