import React from 'react'; interface IconProps { className?: string; } const EmbeddingIcon: React.FC = ({ className = '' }) => { return ( {/* Background */} {/* Input */} Input Hello World {/* Arrow */} {/* Output */} {/* 3D space representation */} x y z {/* 3D points */} Hello World ); }; export default EmbeddingIcon;