"use client"; import type * as React from "react"; import { useToolcraftTheme } from "../app-shell/theme-runtime"; export const toolcraftOrientationGizmoCssSize = 70; const inset = 16; /** One composited opacity for the axes and their theme-aware backing. */ export function ToolcraftOrientationGizmoFrame({ children, locked, }: { children: React.ReactNode; locked: boolean; }): React.JSX.Element { const { resolvedTheme } = useToolcraftTheme(); return (