import React from 'react'; interface TrustpilotIconProps { width?: number | string; height?: number | string; className?: string; firstColor?: string; secondColor?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export function TrustpilotIcon({ width = 2500, height = 2500, className = '', firstColor = '#00b67a', secondColor = '#005128' }: TrustpilotIconProps) { return ( ); }