Files
hydro-builder-app/node_modules/@react-three/drei/core/GizmoViewcube.d.ts
2026-06-13 17:36:44 -07:00

15 lines
406 B
TypeScript

import * as React from 'react';
import { ThreeEvent } from '@react-three/fiber';
type GenericProps = {
font?: string;
opacity?: number;
color?: string;
hoverColor?: string;
textColor?: string;
strokeColor?: string;
onClick?: (e: ThreeEvent<MouseEvent>) => null;
faces?: string[];
};
export declare const GizmoViewcube: (props: GenericProps) => React.JSX.Element;
export {};