Files
2026-05-30 19:59:39 -03: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 {};