Skip to content

PlayIcon

const PlayIcon: 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/PlayIcon.tsx:28

Play icon component for play/start actions.

A standard play triangle icon commonly used for starting playback, running processes, and begin operations in editor interfaces.

Example

// Basic usage
<PlayIcon />
// With custom size and color
<PlayIcon size="lg" color="success" />
// In a play button
<Button icon={<PlayIcon />}>Play</Button>