UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

9 lines (8 loc) 297 B
import { ComponentChildren } from "preact"; export type ButtonProps = { children?: ComponentChildren; disabled?: boolean; onClick?: (e: MouseEvent) => void; }; declare const Button: ({ children, disabled, onClick }: ButtonProps) => import("preact").JSX.Element; export default Button;