lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 402 B
TypeScript
import { Signal } from "@preact/signals";
type MenuItemProps = {
disabled?: boolean;
highlight?: boolean;
onClick?: (e: MouseEvent) => void;
children: string;
compact?: boolean;
activeSignal?: Signal<any>;
};
declare const MenuButton: ({ disabled, highlight, onClick, children, compact, activeSignal }: MenuItemProps) => import("preact").JSX.Element;
export default MenuButton;