@nomercyicons/react
Version:
31 lines • 888 B
JavaScript
import * as React from "react";
function SafariIcon({
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: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFF",
d: "M39.447 9.003L26.542 26.292 9.253 39.197l12.905-17.289.294.294-.294-.294L39.447 9.003z"
})));
}
const ForwardRef = React.forwardRef(SafariIcon);
export default ForwardRef;