@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 989 B
JavaScript
const React = require("react");
function DocumentIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M16 3h.697A5.303 5.303 0 0 1 22 8.303V16.5a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-8A5.5 5.5 0 0 1 7.5 3H8m2 0h4"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 9v4.5a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 13.5V9"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M7.75 9.25h6.5M7.75 12.25h3.5M9 4.286V2M15 4.286V2"
}));
}
const ForwardRef = React.forwardRef(DocumentIcon);
module.exports = ForwardRef;