@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.43 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconMoneyFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 3C3.89543 3 3 3.89543 3 5V13C3 14.1046 3.89543 15 5 15H19C20.1046 15 21 14.1046 21 13V5C21 3.89543 20.1046 3 19 3H5ZM15 9C15 10.6569 13.6569 12 12 12C10.3431 12 9 10.6569 9 9C9 7.34315 10.3431 6 12 6C13.6569 6 15 7.34315 15 9ZM7.75 9C7.75 9.55228 7.30228 10 6.75 10C6.19772 10 5.75 9.55228 5.75 9C5.75 8.44772 6.19772 8 6.75 8C7.30228 8 7.75 8.44772 7.75 9ZM17.25 8C16.6977 8 16.25 8.44772 16.25 9C16.25 9.55228 16.6977 10 17.25 10C17.8023 10 18.25 9.55228 18.25 9C18.25 8.44772 17.8023 8 17.25 8Z" }), _jsx("path", { d: "M7 20.25C7 19.8358 7.33579 19.5 7.75 19.5H16.25C16.6642 19.5 17 19.8358 17 20.25C17 20.6642 16.6642 21 16.25 21H7.75C7.33579 21 7 20.6642 7 20.25Z" }), _jsx("path", { d: "M5.75 16.5C5.33579 16.5 5 16.8358 5 17.25C5 17.6642 5.33579 18 5.75 18H18.25C18.6642 18 19 17.6642 19 17.25C19 16.8358 18.6642 16.5 18.25 16.5H5.75Z" })] }));
};
IconMoneyFilled.iconName = "money--filled";
export default IconMoneyFilled;