@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
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#E2001A";
const SiFritz = React.forwardRef(function SiFritz2({ title = "FRITZ!", 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: "M13.495 19.183 17.37 24l4.817-3.903-3.875-4.817zM23.571.692 16.097.111l-.914 15.003 6.118.221zM6.962 5.564v4.097l5.62-.055v5.37H7.016v8.055H.43V.277L13.024 0V5.51z" })
]
}
);
});
export { SiFritz as default, defaultColor };