mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
9 lines (8 loc) • 317 B
TypeScript
import { ComponentChildren } from "preact";
type TitleBarButtonProps = {
children?: ComponentChildren;
onClick?: () => void;
disabled?: boolean;
};
declare const TitleBarButton: ({ children, onClick, disabled }: TitleBarButtonProps) => import("preact").JSX.Element;
export default TitleBarButton;