bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
15 lines • 1.08 kB
JSON
{
"name": "ui-components-yourswalleticon",
"type": "registry:component",
"dependencies": [],
"devDependencies": [],
"registryDependencies": [],
"files": [
{
"path": "components/ui-components/YoursWalletIcon.tsx",
"type": "registry:component",
"content": "export interface YoursWalletIconProps {\n\tsize?: number;\n\tcolor?: string;\n\tclassName?: string;\n}\n\nexport function YoursWalletIcon({\n\tsize = 20,\n\tcolor,\n\tclassName,\n}: YoursWalletIconProps) {\n\treturn (\n\t\t<svg width={size} height={size} viewBox=\"0 0 24 24\" className={className}>\n\t\t\t<title>Yours Wallet</title>\n\t\t\t<path\n\t\t\t\tfill={color || \"currentColor\"}\n\t\t\t\td=\"M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z\"\n\t\t\t/>\n\t\t\t<path\n\t\t\t\tfill=\"hsl(var(--background))\"\n\t\t\t\td=\"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\"\n\t\t\t/>\n\t\t</svg>\n\t);\n}\n",
"target": "<%- config.aliases.components %>/yourswalleticon.tsx"
}
]
}