@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.71 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCurrencyPound = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M9.54306 4.34321C10.7941 3.38322 12.3516 2.91079 13.9251 3.01392C15.4987 3.11706 16.9811 3.78874 18.0962 4.90381C18.3891 5.19671 18.3891 5.67158 18.0962 5.96447C17.8033 6.25737 17.3284 6.25737 17.0355 5.96447C16.1778 5.10672 15.0375 4.59005 13.827 4.51071C12.6166 4.43138 11.4186 4.79479 10.4562 5.53324C9.49384 6.27169 8.83274 7.33482 8.59609 8.52456C8.3992 9.51437 8.7602 10.7542 9.43664 12H16.25C16.6642 12 17 12.3358 17 12.75C17 13.1642 16.6642 13.5 16.25 13.5H10.1391C10.5 14.7001 10.4402 16.0163 10.0804 17.1982C9.82771 18.0281 9.41632 18.8271 8.86388 19.5H17.25C17.6642 19.5 18 19.8358 18 20.25C18 20.6642 17.6642 21 17.25 21H6.76673C6.61878 21.0032 6.47333 20.9623 6.34925 20.8841C6.25978 20.8276 6.18142 20.7518 6.12124 20.659C6.07332 20.5855 6.03794 20.503 6.01814 20.4147C5.97368 20.218 6.01162 20.0146 6.11601 19.8491C6.17246 19.7597 6.24833 19.6813 6.3411 19.6212C6.37315 19.6003 6.4069 19.5818 6.44209 19.5659C7.45376 19.0801 8.26084 18.0245 8.64539 16.7614C8.986 15.6426 8.96515 14.4587 8.5432 13.5H5.75C5.33579 13.5 5 13.1642 5 12.75C5 12.3358 5.33579 12 5.75 12H7.76055C7.2135 10.8008 6.87795 9.47346 7.12491 8.23192C7.43256 6.68527 8.29198 5.3032 9.54306 4.34321Z" }) }));
};
IconCurrencyPound.iconName = "currency-pound";
export default IconCurrencyPound;