@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 901 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Icon5 = ({
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-.378a.75.75 0 0 1 1.5 0V17A3.25 3.25 0 0 0 11 20.25h2A3.25 3.25 0 0 0 16.25 17v-2.703a3.25 3.25 0 0 0-3.25-3.25H9.306L7.523 12.78a.751.751 0 0 1-1.273-.538V3A.75.75 0 0 1 7 2.25h10a.75.75 0 0 1 0 1.5H7.75v6.717l.727-.707.113-.091A.75.75 0 0 1 9 9.547h4a4.75 4.75 0 0 1 4.75 4.75V17A4.75 4.75 0 0 1 13 21.75h-2A4.75 4.75 0 0 1 6.25 17"
}));
const ForwardRef = forwardRef(Icon5);
module.exports = ForwardRef;