interface PilotIconProps { className?: string; color?: string; } export const PilotIcon = ({ className = 'w-6 h-6', color = 'var(--ods-system-greys-white)' }: PilotIconProps) => ( );