import React from 'react'; interface CapterraIconProps { width?: number | string; height?: number | string; className?: string; firstColor?: string; secondColor?: string; thirdColor?: string; fourthColor?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function CapterraIcon({ width = 2500, height = 2500, className = '', firstColor = '#ff9d28', secondColor = '#68c5ed', thirdColor = '#044d80', fourthColor = '#e54747', }: CapterraIconProps) { return ( ); }