UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.61 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoBitcoinColor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("circle", { cx: 12, cy: 12, r: 8, fill: "#fff" }), _jsx("path", { fill: "#F7931A", d: "M10.736 14.588c.896.236 2.852.753 3.163-.497.32-1.278-1.578-1.704-2.504-1.912l-.27-.062-.602 2.415zM11.58 11.058c.747.2 2.375.634 2.659-.502.29-1.162-1.293-1.513-2.066-1.684q-.132-.028-.226-.052l-.546 2.191z" }), _jsx("path", { fill: "#F7931A", fillRule: "evenodd", d: "M9.58 21.7c5.357 1.337 10.783-1.924 12.118-7.28 1.336-5.358-1.924-10.785-7.281-12.12C9.06.963 3.635 4.223 2.3 9.581.963 14.939 4.224 20.365 9.58 21.701m4.627-13.648c1.385.477 2.398 1.193 2.2 2.523-.145.975-.685 1.446-1.402 1.611.985.513 1.486 1.299 1.008 2.661-.592 1.692-1.999 1.835-3.87 1.481l-.454 1.82-1.097-.274.448-1.795q-.426-.105-.874-.227l-.45 1.804-1.096-.273.454-1.824-.309-.08-.473-.121-1.428-.356.545-1.256s.809.215.798.199c.31.077.448-.126.502-.26l.718-2.877.079.02.037.008a1 1 0 0 0-.114-.036l.512-2.054c.013-.233-.067-.527-.512-.638.018-.011-.796-.198-.796-.198l.291-1.172 1.514.378-.002.006q.343.084.7.164l.45-1.801 1.097.273-.44 1.766c.294.068.59.135.879.207l.437-1.755 1.097.274z", clipRule: "evenodd" })] })); }; IconLogoBitcoinColor.iconName = "logo-bitcoin--color"; export default IconLogoBitcoinColor;