import React from 'react' interface ClickUpIconProps { width?: number | string height?: number | string className?: string } export function ClickUpIcon({ width = 24, height = 24, className = '', }: ClickUpIconProps) { return ( ) }