@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 1.53 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#0046D7";
const SiNextbike = React.forwardRef(function SiNextbike2({ title = "nextbike", 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: "M11.329 11.097C10.465 7.857 7.725 5.5 4.489 5.5H.754C.197 5.5 0 5.662 0 6.326c0 1.546.43 2.981 1.15 4.182A5.648 5.648 0 0 0 0 13.92c0 3.16 2.603 5.728 5.818 5.728 2.86 0 5.236-2.031 5.725-4.706.24-1.325.13-2.564-.214-3.845zm-9.015 2.826c0-.575.144-1.112.395-1.58 1.167.988 2.637 1.58 4.238 1.58h2.351c0 1.904-1.56 3.446-3.49 3.446s-3.494-1.546-3.494-3.446zM14.09 7.871a7.56 7.56 0 0 1 3.859-1.222.239.239 0 0 0 .234-.234v-1.83c0-.128-.107-.252-.252-.235a9.858 9.858 0 0 0-5.136 1.597c-.196.128-.378.269-.574.396-.107.09-.128.234-.038.34l1.167 1.402c.09.107.234.107.34.034-.058.094.182-.138.4-.248zm4.093.324c-3.215 0-5.818 2.568-5.818 5.728s2.603 5.728 5.818 5.728S24 17.083 24 13.923s-2.602-5.728-5.817-5.728zm0 9.174c-1.921 0-3.484-1.546-3.484-3.446s1.56-3.446 3.484-3.446 3.483 1.546 3.483 3.446-1.56 3.446-3.483 3.446z" })
]
}
);
});
export { SiNextbike as default, defaultColor };