@nomercyicons/react
Version:
33 lines • 1.26 kB
JavaScript
const React = require("react");
function SportsMartialArtsRoundedIcon({
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: "M19.06 2.6L11.6 8.7l-1.21-1.04 2.48-1.43a1 1 0 00.21-1.57l-2.95-2.95a.996.996 0 10-1.41 1.41l2.03 2.03-5.4 3.11a.99.99 0 00-.46.6l-.96 3.49c-.07.26-.04.53.1.77l1.74 3.02c.28.48.89.64 1.37.37.48-.28.64-.89.37-1.37l-1.53-2.66.36-1.29L9.5 13l.44 8c.03.56.49 1 1.05 1s1.02-.44 1.05-1l.45-9 7.87-7.96a.972.972 0 00-1.3-1.44z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 5,
cy: 5,
r: 2
}));
}
const ForwardRef = React.forwardRef(SportsMartialArtsRoundedIcon);
module.exports = ForwardRef;