26 lines
997 B
JavaScript
26 lines
997 B
JavaScript
|
import * as React from "react";
|
||
|
function StrikethroughIcon({
|
||
|
title,
|
||
|
titleId,
|
||
|
...props
|
||
|
}, svgRef) {
|
||
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
||
|
xmlns: "http://www.w3.org/2000/svg",
|
||
|
fill: "none",
|
||
|
viewBox: "0 0 24 24",
|
||
|
strokeWidth: 1.5,
|
||
|
stroke: "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", {
|
||
|
strokeLinecap: "round",
|
||
|
strokeLinejoin: "round",
|
||
|
d: "M12 12a8.912 8.912 0 0 1-.318-.079c-1.585-.424-2.904-1.247-3.76-2.236-.873-1.009-1.265-2.19-.968-3.301.59-2.2 3.663-3.29 6.863-2.432A8.186 8.186 0 0 1 16.5 5.21M6.42 17.81c.857.99 2.176 1.812 3.761 2.237 3.2.858 6.274-.23 6.863-2.431.233-.868.044-1.779-.465-2.617M3.75 12h16.5"
|
||
|
}));
|
||
|
}
|
||
|
const ForwardRef = /*#__PURE__*/ React.forwardRef(StrikethroughIcon);
|
||
|
export default ForwardRef;
|