24 lines
1.4 KiB
JavaScript
24 lines
1.4 KiB
JavaScript
const React = require("react");
|
|
function StrikethroughIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
viewBox: "0 0 24 24",
|
|
fill: "currentColor",
|
|
"aria-hidden": "true",
|
|
"data-slot": "icon",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
d: "M9.657 4.728c-1.086.385-1.766 1.057-1.979 1.85-.214.8.046 1.733.81 2.616.746.862 1.93 1.612 3.388 2.003.07.019.14.037.21.053h8.163a.75.75 0 0 1 0 1.5h-8.24a.66.66 0 0 1-.02 0H3.75a.75.75 0 0 1 0-1.5h4.78a7.108 7.108 0 0 1-1.175-1.074C6.372 9.042 5.849 7.61 6.229 6.19c.377-1.408 1.528-2.38 2.927-2.876 1.402-.497 3.127-.55 4.855-.086A8.937 8.937 0 0 1 16.94 4.6a.75.75 0 0 1-.881 1.215 7.437 7.437 0 0 0-2.436-1.14c-1.473-.394-2.885-.331-3.966.052Zm6.533 9.632a.75.75 0 0 1 1.03.25c.592.974.846 2.094.55 3.2-.378 1.408-1.529 2.38-2.927 2.876-1.402.497-3.127.55-4.855.087-1.712-.46-3.168-1.354-4.134-2.47a.75.75 0 0 1 1.134-.982c.746.862 1.93 1.612 3.388 2.003 1.473.394 2.884.331 3.966-.052 1.085-.384 1.766-1.056 1.978-1.85.169-.628.046-1.33-.381-2.032a.75.75 0 0 1 .25-1.03Z",
|
|
clipRule: "evenodd"
|
|
}));
|
|
}
|
|
const ForwardRef = /*#__PURE__*/ React.forwardRef(StrikethroughIcon);
|
|
module.exports = ForwardRef; |