lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines (10 loc) • 359 B
TypeScript
import { CSSProperties } from "preact/compat";
type Props = {
options?: Array<string>;
label?: string;
onChange?: (index: number, value: string) => void;
style?: CSSProperties;
width?: number;
};
declare const SelectBox: ({ options, label, onChange, style, width }: Props) => import("preact/compat").JSX.Element;
export default SelectBox;