spacesvr-websessions
Version:
A standardized reality for future of the 3D Web
20 lines (19 loc) • 524 B
TypeScript
import { GroupProps } from "@react-three/fiber";
import { Idea } from "../../logic/basis/idea";
import { Raycaster } from "three";
declare type ButtonProps = {
children?: string;
onClick?: () => void;
font?: string;
fontSize?: number;
maxWidth?: number;
width?: number;
textColor?: string;
color?: string;
outline?: boolean;
outlineColor?: string;
idea?: Idea;
raycaster?: Raycaster;
} & GroupProps;
export declare function Button(props: ButtonProps): JSX.Element;
export {};