@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 1.45 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#14AECB";
const SiB4x = React.forwardRef(function SiB4x2({ title = "B4X", 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: "M14.538 23.992c-6.265-.455-10.82-3-13.57-7.574a13 13 0 0 1-.814-1.575c0-.09 7.728-14.238 7.76-14.22a2 2 0 0 1 .068.46c.075.925.373 2.335.71 3.357a14.8 14.8 0 0 0 2.044 3.97 4 4 0 0 0 .37.456c.033.022.22.227.417.462.198.235.49.553.653.71l.299.283-.325-.355a19 19 0 0 1-.597-.697l-.276-.34.478-.843 3.835-6.769c.418-.735.769-1.328.776-1.317a8 8 0 0 1-.126.746c-.665 3.291-.5 6.258.477 8.728.164.418.523 1.157.56 1.157.015 0 .26-.433.545-.96a1795 1795 0 0 1 4.13-7.593 1 1 0 0 1 .13-.201c.012 0-.066.239-.17.53-.575 1.593-.945 3.097-1.135 4.627-.093.746-.082 2.492.026 3.194.287 1.899.95 3.455 2.026 4.735.362.429.787.828.952.888.048.018.074.06.063.09l-1.683 3.79A284 284 0 0 0 20.5 23.5c0 .09-.168.142-.735.235-1.16.186-1.948.242-3.478.261-.82.008-1.604.004-1.75-.007" })
]
}
);
});
export { SiB4x as default, defaultColor };