spacesvr-websessions
Version:
A standardized reality for future of the 3D Web
14 lines (13 loc) • 334 B
TypeScript
import { GroupProps } from "@react-three/fiber";
declare type Item = {
text: string;
value: string;
};
declare type DropDownProps = {
items: Item[];
value?: string;
width?: number;
onChange?: (item: Item) => void;
} & GroupProps;
export declare function DropDown(props: DropDownProps): JSX.Element;
export {};