@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.11 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const VaultIcon = ({
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: "M7 9v6M3 14v2M3 8v2",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m11.463 8.737 1.226 1.223M18 15.264l-1.226-1.224m1.22-5.309L16.77 9.957m-5.303 5.312 1.224-1.226m4.05-.135a2.771 2.771 0 1 1-4.021-3.815 2.771 2.771 0 0 1 4.02 3.815Z",
opacity: 0.4
}));
const ForwardRef = forwardRef(VaultIcon);
module.exports = ForwardRef;