@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
52 lines (45 loc) • 2.3 kB
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
const jsxRuntime = require('react/jsx-runtime');
const React = require('react');
function _interopNamespaceDefault(e) {
const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
if (e) {
for (const k in e) {
if (k !== 'default') {
const d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: () => e[k]
});
}
}
}
n.default = e;
return Object.freeze(n);
}
const React__namespace = /*#__PURE__*/_interopNamespaceDefault(React);
const defaultColor = "#E95420";
const SiMaas = React__namespace.forwardRef(function SiMaas2({ title = "MAAS", color = "currentColor", size = 24, ...others }, ref) {
if (color === "default") {
color = defaultColor;
}
return /* @__PURE__ */ jsxRuntime.jsxs(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
fill: color,
viewBox: "0 0 24 24",
ref,
...others,
children: [
/* @__PURE__ */ jsxRuntime.jsx("title", { children: title }),
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.426 0v24h15.148V0Zm3.357 10.385c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.044.212h7.928c.218 0 .39.173.397.384v.512a.395.395 0 0 1-.391.384H8.827c.006-.013.012-.02.019-.032a1.22 1.22 0 0 0-.02-1.248m-1.121 2.83c.474 0 .858.381.858.852 0 .47-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.198h8.012c.218 0 .39.173.39.378v.513a.395.395 0 0 1-.39.384h-8q.012-.001.013-.013c.16-.275.206-.608.122-.922a1.1 1.1 0 0 0-.147-.34M7.706 16.47c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012c.218 0 .39.172.39.384v.512a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.248m-1.037 2.83c.474 0 .858.382.858.852s-.384.852-.858.852a.855.855 0 0 1-.858-.852c0-.47.384-.852.858-.852m1.037.212h8.012a.38.38 0 0 1 .39.384v.513a.395.395 0 0 1-.39.384H8.743l.02-.032a1.22 1.22 0 0 0-.02-1.249" })
]
}
);
});
exports.default = SiMaas;
exports.defaultColor = defaultColor;