import React from 'react'; interface HandDollarIconProps { className?: string; width?: number; height?: number; color?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export const HandDollarIcon: React.FC = ({ className = "", width = 24, height = 24, color = "var(--ods-flamingo-cyan-base)" }) => { return ( ); };