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