@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 862 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const SaveIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3.25 8.999c0-3.665 2.738-6.749 6.25-6.749h5c3.512 0 6.25 3.084 6.25 6.749v10.362c0 .948-.502 1.73-1.22 2.122a2.13 2.13 0 0 1-2.405-.233l-3.418-2.796c-1.017-.832-2.397-.832-3.414 0L6.875 21.25a2.13 2.13 0 0 1-2.405.233c-.718-.392-1.22-1.174-1.22-2.122z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(SaveIcon);
module.exports = ForwardRef;