UNPKG

@icons-pack/react-simple-icons

Version:

This package provides the Simple Icons packaged as a set of React components.

28 lines (25 loc) 858 B
import { jsxs, jsx } from 'react/jsx-runtime'; import * as React from 'react'; const defaultColor = "#4527A0"; const SiKodular = React.forwardRef(function SiKodular2({ title = "Kodular", 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: "M3.612 0a5.6 5.6 0 0 1 5.6 5.6v4.934l2.44-2.44a4.48 4.48 0 0 1 6.336 0l-6.095 6.096 8.495 8.495a4.48 4.48 0 0 1-6.336 0l-4.84-4.84V24a5.6 5.6 0 0 1-5.6-5.6Z" }) ] } ); }); export { SiKodular as default, defaultColor };