UNPKG

spacesvr-websessions

Version:

A standardized reality for future of the 3D Web

10 lines (9 loc) 291 B
import { GroupProps } from "@react-three/fiber"; declare type ShutterButton = { open: boolean; pressed: boolean; setPressed: (pressed: boolean) => void; onPress: () => void; } & GroupProps; export default function ShutterButton(props: ShutterButton): JSX.Element; export {};