@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 1.99 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#000000";
const SiRatatui = React.forwardRef(function SiRatatui2({ title = "Ratatui", 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: "M8.16 13.92h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48H12v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48v.48h.48V24H2.4v-.48h-.48v-.48h-.48v-.48H.96v-.48H.48v-.48H0v-.96h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.96Zm-.96 6.72h.48v.48h.48v.48h.48v-.96h-.48v-.48h-.48v-.48H7.2Zm0-2.88H5.76v.48h.48v.48h1.92V16.8h-.48v-.48H7.2ZM24 7.68h-.48V9.6h-.48v.48h-.48v.48h-.48v.48h-.96v.48h-.48V12h-.48v.48h-.48v.48h-.96v4.32h2.4v.48h.48v4.32h-.48v.48h-.48v.96h-.48V24h-.48v-.48h-.48v-.48h-.48v-.48h.48v-.48h.48v-.48h.48v-2.4h-.48v.48h-1.44v.48h-.48v1.44h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48h-.48v-.48H12v-.48h-.48v-.96H12v-.96h.48v-.48h-.96v.48H9.6v-.48h-.48v-.48h-.48v-.48h-.48v-.96h.48v-.48h.48v-.48h.96v-.48h3.36V9.6h.48v-.48h.48v-.48h.48v-.48h.48v-.48h.48V7.2h1.92v-.48h1.44v-.48H24Zm-8.16.96h-.48v.96h.48v.48h.96V9.6h.48v-.96h-.48v-.48h-.96ZM13.92.48h.48V4.8h.48v.48h.48v.96h.48v.96h-.48v.48h-.48v.48h-.48v.48h-.48v.48h-.48v.48H12v-.48h-.48v-.48h-.96v-.48h-.48v-.48H9.6V7.2H6.72v-.48h-.48v-2.4h.48v-.48h.48v-.48h.48v-.48h.48V2.4h.48v-.48h.48v-.48h.48V.96h.48V.48h.96V0h2.88z" })
]
}
);
});
export { SiRatatui as default, defaultColor };