@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.86 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCurrencyEuro = (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: "M7.80708 9C8.02245 8.0735 8.35598 7.26216 8.82294 6.59753C9.71086 5.33372 11.1519 4.5 13.5 4.5C14.849 4.5 15.8877 4.77673 16.6873 5.23238C17.4841 5.68637 18.0851 6.34151 18.5258 7.16618C18.7211 7.5315 19.1755 7.66939 19.5408 7.47416C19.9061 7.27894 20.044 6.82453 19.8488 6.4592C19.2911 5.41561 18.501 4.5394 17.43 3.92911C16.3618 3.32048 15.0561 3 13.5 3C10.7395 3 8.8055 4.0131 7.59558 5.73521C6.93696 6.67265 6.51578 7.78813 6.27257 9H4.25C3.83579 9 3.5 9.33579 3.5 9.75C3.5 10.1642 3.83579 10.5 4.25 10.5H6.06192C6.0195 10.9921 6 11.4937 6 12C6 12.5063 6.0195 13.0079 6.06192 13.5H4.25C3.83579 13.5 3.5 13.8358 3.5 14.25C3.5 14.6642 3.83579 15 4.25 15H6.27257C6.51578 16.2119 6.93696 17.3273 7.59558 18.2648C8.8055 19.9869 10.7395 21 13.5 21C15.0561 21 16.3618 20.6795 17.43 20.0709C18.501 19.4606 19.2911 18.5844 19.8488 17.5408C20.044 17.1755 19.9061 16.7211 19.5408 16.5258C19.1755 16.3306 18.7211 16.4685 18.5258 16.8338C18.0851 17.6585 17.4841 18.3136 16.6873 18.7676C15.8877 19.2233 14.849 19.5 13.5 19.5C11.1519 19.5 9.71086 18.6663 8.82294 17.4025C8.35598 16.7378 8.02245 15.9265 7.80708 15H14.25C14.6642 15 15 14.6642 15 14.25C15 13.8358 14.6642 13.5 14.25 13.5H7.56806C7.52218 13.0202 7.5 12.5192 7.5 12C7.5 11.4808 7.52218 10.9798 7.56806 10.5H14.25C14.6642 10.5 15 10.1642 15 9.75C15 9.33579 14.6642 9 14.25 9H7.80708Z" }) }));
};
IconCurrencyEuro.iconName = "currency-euro";
export default IconCurrencyEuro;