import React from 'react'; interface CompareIconProps { className?: string; width?: number; height?: number; } export const CompareIcon: React.FC = ({ className = "", width = 24, height = 24 }) => { return ( ); };