UNPKG

@yannichock/react-minecraft-skin-viewer

Version:
25 lines (24 loc) 618 B
declare const defaultProps: { walk: boolean; control: boolean; rotate: boolean; }; declare type MinecraftSkinViewerProps = { skin: string; width: number; height: number; walk: boolean; rotate: boolean; control: boolean; zoom: boolean; background: String; } & typeof defaultProps; export declare const MinecraftSkinViewer: { ({ skin, width, height, walk, rotate, control, zoom, background }: MinecraftSkinViewerProps): JSX.Element; defaultProps: { walk: boolean; control: boolean; rotate: boolean; }; }; export {};