UNPKG

@astraicons/react

Version:

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

32 lines 1.27 kB
const React = require("react"); const { forwardRef } = require("react"); const Vault2Icon = ({ 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", { d: "M3.781 8a4 4 0 0 1 4-4H17a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H7.78a4 4 0 0 1-4-4z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, d: "M6.5 9v6M3 14v2M3 8v2" }), /*#__PURE__*/React.createElement("path", { d: "M15.46 13.859a2.7 2.7 0 1 1-3.918-3.718 2.7 2.7 0 0 1 3.917 3.717Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "m16.685 15.18-.796-.795-.398-.398m-5.175-5.166.797.794.398.398M16.68 8.816l-.796.796-.397.398m-5.167 5.175.795-.796.398-.399M13.509 16.5l-.002-1.125v-.562M13.493 7.5l.002 1.125v.563M18 11.992l-1.125.002h-.562M9 12.008l1.125-.002h.563" })); const ForwardRef = forwardRef(Vault2Icon); module.exports = ForwardRef;