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