@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.2 kB
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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M21.833 17.851c-1.247 1.178-2.99 1.899-4.883 1.899h-9.9c-1.894 0-3.636-.72-4.883-1.899A5.5 5.5 0 0 0 7.5 22h9a5.5 5.5 0 0 0 5.333-4.149M22 8.303v6.636c-.673 1.89-2.637 3.311-5.05 3.311h-9.9c-2.413 0-4.377-1.422-5.05-3.311V8.5A5.5 5.5 0 0 1 7.5 3h9.197A5.303 5.303 0 0 1 22 8.303M7 9.25a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 7 9.25m0 3a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75m8-11a.75.75 0 0 1 .75.75v2.286a.75.75 0 0 1-1.5 0V2a.75.75 0 0 1 .75-.75m-6 0a.75.75 0 0 1 .75.75v2.286a.75.75 0 1 1-1.5 0V2A.75.75 0 0 1 9 1.25",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(DocumentIcon);
module.exports = ForwardRef;