SVG icon component rendering the ClickUp brand logo with customizable dimensions and styling. ## Key Components **`ClickUpIconProps`** — Interface defining optional props: - `width` — Icon width (default: `24`) - `height` — Icon height (default: `24`) - `className` — Additional CSS classes (default: `''`) **`ClickUpIcon`** — Named export rendering a two-path SVG with ClickUp's signature gradient colors (purple-to-cyan bottom arc, pink-to-yellow top chevron). ## Usage Example ```typescript import { ClickUpIcon } from './clickup-icon' // Default 24×24 // Custom size with Tailwind class // String-based responsive size ```