UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 914 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCurrencyYen = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M5.338 3.123a.75.75 0 0 1 1.039.215l-1.253.824a.75.75 0 0 1 .214-1.039" }), _jsx("path", { d: "M17.624 3.338 12 11.885 6.377 3.338l-1.253.824L10.28 12H6.75a.75.75 0 0 0 0 1.5h4.5V16h-4.5a.75.75 0 0 0 0 1.5h4.5v2.75a.75.75 0 0 0 1.5 0V17.5h4.5a.75.75 0 0 0 0-1.5h-4.5v-2.5h4.5a.75.75 0 0 0 0-1.5h-3.53l5.157-7.838z" }), _jsx("path", { d: "M17.624 3.338a.75.75 0 1 1 1.253.824z" })] })); }; IconCurrencyYen.iconName = "currency-yen"; export default IconCurrencyYen;