@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 834 B
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#6767B2";
const SiBitsy = React.forwardRef(function SiBitsy2({ title = "Bitsy", 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: "M17.143 12v10.29h-3.429v-3.43H6.857v3.43H3.43v-6.86H0V1.71h3.429v3.43h3.428V1.71h3.429V12Zm3.428-3.43V1.71H24v6.86ZM17.143 12V8.57h3.428V12Z" })
]
}
);
});
export { SiBitsy as default, defaultColor };