@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 1.22 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#36CFCC";
const SiGhostfolio = React.forwardRef(function SiGhostfolio2({ title = "Ghostfolio", 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.983 0a9.375 9.375 0 0 0-9.358 9.375v13.062a.781.781 0 0 0 1.334.553l1.791-1.844 2.573 2.625c.305.305.8.305 1.105 0L12 21.146l2.573 2.625c.305.305.8.305 1.105 0l2.572-2.625 1.792 1.844a.781.781 0 0 0 1.333-.553V9.455c0-5.166-4.226-9.464-9.392-9.455m-3.89 12.5a2.346 2.346 0 0 1-2.343-2.344 2.346 2.346 0 0 1 2.344-2.344 2.346 2.346 0 0 1 2.344 2.344A2.346 2.346 0 0 1 8.094 12.5m7.814 0a2.346 2.346 0 0 1-2.344-2.344 2.346 2.346 0 0 1 2.344-2.344 2.346 2.346 0 0 1 2.343 2.344 2.346 2.346 0 0 1-2.343 2.344" })
]
}
);
});
export { SiGhostfolio as default, defaultColor };