UNPKG

@astraicons/react

Version:

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

21 lines 755 B
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", viewBox: "0 0 24 24", fill: "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 2.1H9.186C5.77 2.1 3 5.084 3 8.766v11.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.766C21 5.084 18.23 2.1 14.813 2.1" })); } const ForwardRef = React.forwardRef(SaveIcon); export default ForwardRef;