bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
5 lines (4 loc) • 610 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export function HandCashIcon({ size = 20, color = "currentColor", className, }) {
return (_jsxs("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: color, className: className, children: [_jsx("title", { children: "HandCash" }), _jsx("circle", { cx: "12", cy: "12", r: "10", fill: color }), _jsxs("g", { fill: "white", children: [_jsx("rect", { x: "7", y: "7", width: "2.5", height: "10" }), _jsx("rect", { x: "14.5", y: "7", width: "2.5", height: "10" }), _jsx("rect", { x: "9.5", y: "11", width: "5", height: "2" })] })] }));
}