lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines (10 loc) • 361 B
TypeScript
import { CSSProperties } from "preact/compat";
type Props = {
style?: CSSProperties;
fullWidth?: boolean;
onChange?: (val: string) => void;
clearOnChange?: any;
placeholder?: string;
};
declare const TextBox: ({ style, fullWidth, onChange, clearOnChange, placeholder }: Props) => import("preact/compat").JSX.Element;
export default TextBox;