@nomercyicons/react
Version:
40 lines • 1.18 kB
JavaScript
const React = require("react");
function SafariColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("g", {
fill: "none",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("circle", {
cx: 24,
cy: 24,
r: 24,
fill: "#0AF"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFF",
d: "M8.903 39.097l17.289-12.905-3.2-4.533z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#E00",
d: "M39.097 8.903L26.192 26.192l-2.623-2.623z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFF",
d: "M8.903 39.097l12.905-17.289L24 24z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#E00",
d: "M21.808 21.808L39.097 8.903 24 24z"
})));
}
const ForwardRef = React.forwardRef(SafariColorIcon);
module.exports = ForwardRef;