UNPKG

bigblocks

Version:

Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React

5 lines (4 loc) 596 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; export function YoursWalletIcon({ size = 20, color, className, }) { return (_jsxs("svg", { width: size, height: size, viewBox: "0 0 24 24", className: className, children: [_jsx("title", { children: "Yours Wallet" }), _jsx("path", { fill: color || "currentColor", d: "M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z" }), _jsx("path", { fill: "hsl(var(--background))", d: "M12 8.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5m0 5c1.65 0 3 1.35 3 3v1H9v-1c0-1.65 1.35-3 3-3z" })] })); }