UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

27 lines 962 B
const React = require("react"); const { forwardRef } = require("react"); const SaveSlashIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M4 18V8.999C4 5.686 6.462 3 9.5 3h5c1.233 0 2.372.443 3.289 1.19M4.42 20.5c.494.55 1.328.703 1.979.17l3.418-2.796a3.4 3.4 0 0 1 4.364 0L17.6 20.67c.989.809 2.4.04 2.4-1.31V9a6.4 6.4 0 0 0-.788-3.096" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19.092 3 2 19.966" })); const ForwardRef = forwardRef(SaveSlashIcon); module.exports = ForwardRef;