@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 790 B
JavaScript
import * as React from "react";
function SaveIcon({
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", {
d: "M14.813 2H9.186C5.77 2 3 4.984 3 8.666v11.513c0 1.498 1.588 2.353 2.7 1.454l3.845-3.107a3.86 3.86 0 0 1 4.91 0l3.845 3.107c1.113.899 2.7.044 2.7-1.454V8.666C21 4.984 18.23 2 14.813 2Z"
}));
}
const ForwardRef = React.forwardRef(SaveIcon);
export default ForwardRef;