@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
52 lines (45 loc) • 2.31 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 = "#FF570A";
const SiCoderabbit = React__namespace.forwardRef(function SiCoderabbit2({ title = "CodeRabbit", 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: "M23.9913 13.0494C23.7481 6.864 18.747 1.8204 12.5667 1.535 5.678 1.2229 0 6.7106 0 13.5252c0 2.6011.8247 5.0066 2.231 6.968.8089 1.1314 2.0724 1.8451 3.4417 1.9614-2.0143-2.284-.3013-4.1924-.3013-4.1924-.7983.386-1.1261 1.6865-1.1261 1.6865-1.512-.9305-1.1631-2.0407-1.1631-2.0407.0951-.2326.3119-.8723 1.475-.6397 2.2522-7.4173 9.6695-3.5527 9.6695-3.5527-.1163-.2327-.5023-1.5544-.5023-1.5544-4.8162-.6978-6.4445-4.113-6.4445-4.113 4.4673-1.3587 7.1847 2.3314 7.1847 2.3314-1.2424-3.0293-4.2294-1.824-5.0066-6.7935 5.1864.8618 5.937 4.9273 6.0428 5.8049.074-.1692.4864-.3965 2.1887-.296 2.6381.1532 4.737 2.8337 4.737 2.8337 0 5.4347-6.6402 4.1236-6.6402 8.2314 0 .9623 1.0468.9041 1.3957 1.3693.2855.3807.164.8036.1057.941h.6292c1.4909 0 2.9077-.6872 3.7853-1.8926 1.5279-2.0988 2.3949-4.7105 2.2891-7.5337zm-8.3953 9.4264c-1.1525-.3806-2.268-2.9817-3.6532-2.9817 1.9403 1.1683 1.1156 2.7174.957 2.9817h2.7015z" })
]
}
);
});
exports.default = SiCoderabbit;
exports.defaultColor = defaultColor;