lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 406 B
TypeScript
import { ComponentChildren } from "preact";
type IconButtonProps = {
children?: ComponentChildren;
onClick?: (e: MouseEvent) => void;
disabled?: boolean;
label?: string;
borderless?: boolean;
fill?: boolean | string;
};
declare const IconButton: ({ children, onClick, disabled, label, borderless, fill }: IconButtonProps) => import("preact").JSX.Element;
export default IconButton;