Skip to content
Entangle UI v0.13.0

CameraIcon

const CameraIcon: 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/CameraIcon.tsx:29

Camera icon component for viewport cameras and capture actions.

A camera body with a centered lens — the conventional glyph for scene cameras, “look through camera”, framing controls, and screenshot/capture actions in editor viewports.

// Basic usage
<CameraIcon />
// With custom size and color
<CameraIcon size="lg" color="secondary" />
// As a viewport camera control
<IconButton icon={<CameraIcon />} label="Frame camera" />