@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 1.31 kB
JavaScript
const React = require("react");
function SaveSlashIcon({
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",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M21 8.666v11.513c0 1.498-1.587 2.353-2.7 1.454l-3.846-3.107a3.86 3.86 0 0 0-4.909 0L5.7 21.633c-.88.712-2.06.324-2.512-.612M21 8.666q0-.233-.015-.461m.015.46-.015-.46m0 0a7 7 0 0 0-.05-.503m0 0-.03-.202m.03.202-.03-.202m0 0a7 7 0 0 0-.117-.572m0 0a7 7 0 0 0-.122-.428m.122.428-.122-.428m0 0a7 7 0 0 0-.166-.464m0 0a7 7 0 0 0-.201-.456m.201.456-.201-.456m0 0a7 7 0 0 0-.259-.482m0 0a7 7 0 0 0-.294-.456m.294.456-.294-.456m0 0c-.112-.16.125.095 0-.053m-1.887-1.726q.28.17.54.371zm0 0A5.8 5.8 0 0 0 14.813 2H9.186C5.77 2 3 4.984 3 8.666v9.354"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19 2 2 19"
}));
}
const ForwardRef = React.forwardRef(SaveSlashIcon);
module.exports = ForwardRef;