import React from 'react'; interface SendIconProps { width?: string; height?: string; className?: string; color?: string; } export const SendIcon: React.FC = ({ width = "1.5em", height = "1.5em", className = "", color }) => ( );