@nomercyicons/react
Version:
26 lines • 1.17 kB
JavaScript
const React = require("react");
function RuleRoundedIcon({
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("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15.83 10.29l-2.12-2.12a.996.996 0 111.41-1.41l1.41 1.41 3.54-3.54a.996.996 0 111.41 1.41l-4.24 4.24c-.39.4-1.02.4-1.41.01zM10 7H3c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm10.29 5.71a.996.996 0 00-1.41 0L17 14.59l-1.88-1.88a.996.996 0 10-1.41 1.41L15.59 16l-1.88 1.88a.996.996 0 101.41 1.41L17 17.41l1.88 1.88a.996.996 0 101.41-1.41L18.41 16l1.88-1.88a.996.996 0 000-1.41zM10 15H3c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z"
}));
}
const ForwardRef = React.forwardRef(RuleRoundedIcon);
module.exports = ForwardRef;