@nomercyicons/react
Version:
26 lines • 1.17 kB
JavaScript
const React = require("react");
function DangerousRoundedIcon({
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 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.9 3H9.1c-.53 0-1.04.21-1.42.59l-4.1 4.1C3.21 8.06 3 8.57 3 9.1v5.8c0 .53.21 1.04.59 1.41l4.1 4.1c.37.38.88.59 1.41.59h5.8c.53 0 1.04-.21 1.41-.59l4.1-4.1c.38-.37.59-.88.59-1.41V9.1c0-.53-.21-1.04-.59-1.41l-4.1-4.1c-.37-.38-.88-.59-1.41-.59zm.64 12.54a.996.996 0 01-1.41 0L12 13.41l-2.12 2.12a.996.996 0 11-1.41-1.41L10.59 12 8.46 9.88a.996.996 0 111.41-1.41L12 10.59l2.12-2.12a.996.996 0 111.41 1.41L13.41 12l2.12 2.12c.4.39.4 1.03.01 1.42z"
}));
}
const ForwardRef = React.forwardRef(DangerousRoundedIcon);
module.exports = ForwardRef;