lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
10 lines (9 loc) • 350 B
TypeScript
import { GameObjectType } from "../../api/serializer/types";
type Props = {
name: GameObjectType;
iconName?: string;
onDragStart?: (name: GameObjectType) => void;
onDragEnd?: () => void;
};
declare const ComponentIcon: ({ name, iconName, onDragStart, onDragEnd }: Props) => import("preact").JSX.Element;
export default ComponentIcon;