@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 977 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Icon3 = ({
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", {
d: "M6.25 17v-1a.75.75 0 0 1 1.5 0v1A3.25 3.25 0 0 0 11 20.25h2A3.25 3.25 0 0 0 16.25 17v-.823a3.25 3.25 0 0 0-2.41-3.139l-3.034-.813A.75.75 0 0 1 11 10.75h2a3.25 3.25 0 0 0 3.25-3.25V7A3.25 3.25 0 0 0 13 3.75h-2A3.25 3.25 0 0 0 7.75 7v.5a.75.75 0 0 1-1.5 0V7A4.75 4.75 0 0 1 11 2.25h2A4.75 4.75 0 0 1 17.75 7v.5a4.75 4.75 0 0 1-2.817 4.338 4.75 4.75 0 0 1 2.817 4.339V17A4.75 4.75 0 0 1 13 21.75h-2A4.75 4.75 0 0 1 6.25 17"
}));
const ForwardRef = forwardRef(Icon3);
module.exports = ForwardRef;