@nomercyicons/react
Version:
43 lines • 1.37 kB
JavaScript
const React = require("react");
function SportsGolfRoundedIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "currentColor",
viewBox: "0 0 24 24",
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"
}, /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M0 0h24v24H0z"
})), /*#__PURE__*/React.createElement("path", {
d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 10,
cy: 8,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 14,
cy: 8,
r: 1
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 6,
r: 1
}), /*#__PURE__*/React.createElement("path", {
d: "M16 17H8c-.55 0-1 .45-1 1s.45 1 1 1h1c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h1c.55 0 1-.45 1-1s-.45-1-1-1z"
}));
}
const ForwardRef = React.forwardRef(SportsGolfRoundedIcon);
module.exports = ForwardRef;