@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
52 lines (45 loc) • 2 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 = "#CC3333";
const SiVisualparadigm = React__namespace.forwardRef(function SiVisualparadigm2({ title = "Visual Paradigm", 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: "M 1.92 10.08 C 1.92 10.117 11.916 20.132 11.973 20.15 C 11.987 20.154 15.804 16.353 15.804 16.353 C 15.804 16.353 8.138 8.667 8.138 8.642 C 8.138 8.609 11.944 4.803 11.944 4.803 C 11.944 4.803 15.787 8.661 15.787 8.686 C 15.787 8.703 12.98 11.53 12.98 11.53 L 16.804 15.354 L 22.079 10.079 C 22.079 10.079 13.674 1.674 11.981 0 M 3.787 13.036 C 3.764 13.036 2.366 14.424 2.366 14.424 C 2.366 14.424 11.96 24 11.987 24 C 12.013 24 21.601 14.423 21.601 14.423 C 21.601 14.423 20.2 13.036 20.178 13.036 C 20.158 13.036 11.982 21.193 11.982 21.193 C 11.982 21.193 3.805 13.036 3.787 13.036 Z" })
]
}
);
});
exports.default = SiVisualparadigm;
exports.defaultColor = defaultColor;