@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 1.25 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#00F7F1";
const SiOxc = React.forwardRef(function SiOxc2({ title = "Oxc", color = "currentColor", size = 24, ...others }, ref) {
if (color === "default") {
color = defaultColor;
}
return /* @__PURE__ */ jsxs(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
fill: color,
viewBox: "0 0 24 24",
ref,
...others,
children: [
/* @__PURE__ */ jsx("title", { children: title }),
/* @__PURE__ */ jsx("path", { d: "M15.463 3.923c0 .637.517 1.154 1.154 1.154h4.376c.515 0 .772.62.408.984l-5.6 5.601c-.217.216-.34.51-.34.816v1.915c0 .797.79 1.35 1.49.97.71-.386 1.371-.853 1.972-1.392a.603.603 0 0 1 .828.012l4.08 4.08a.56.56 0 0 1-.007.808A17.25 17.25 0 0 1 12 23.54 17.25 17.25 0 0 1 .176 18.872a.56.56 0 0 1-.006-.81l4.08-4.078a.604.604 0 0 1 .827-.012 10.4 10.4 0 0 0 1.973 1.39c.7.38 1.488-.171 1.488-.968v-1.915c0-.307-.122-.6-.339-.816L2.6 6.061a.576.576 0 0 1 .408-.984h4.376c.637 0 1.154-.517 1.154-1.154V1.038c0-.32.258-.577.577-.577h5.77c.318 0 .576.258.576.577v2.885z" })
]
}
);
});
export { SiOxc as default, defaultColor };