Skip to content
Entangle UI v0.13.0

OrbitIcon

const OrbitIcon: NamedExoticComponent<Omit<{ children: ReactNode; className?: string; color?: IconColor; decorative?: boolean; ref?: Ref<SVGSVGElement>; size?: IconSize; testId?: string; title?: string; }, "children">>

Defined in: src/components/Icons/OrbitIcon.tsx:29

Orbit icon component for camera-orbit and rotate-around actions.

A central body with two satellites tracing an orbital ring — the conventional glyph for orbiting a camera around a pivot, turntable views, and “rotate around target” tools in 2D/3D editor viewports.

// Basic usage
<OrbitIcon />
// With custom size and color
<OrbitIcon size="lg" color="accent" />
// In a viewport tool button
<IconButton icon={<OrbitIcon />} label="Orbit camera" />