import React from 'react'; interface ClassificationIconProps { className?: string; } const ClassificationIcon: React.FC = ({ className = '' }) => { return ( {/* Input */} Inputs Basketball {/* Arrow */} {/* Output */} Output {/* Classification bars */} {/* Sport */} Sport 0.800 {/* Food */} Food 0.150 {/* Music */} Music 0.050 ); }; export default ClassificationIcon;