@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.02 kB
JavaScript
const React = require("react");
function ArchiveBoxArrowUpIcon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "m3.086 9 .541 9.176A3 3 0 0 0 6.621 21H17.38a3 3 0 0 0 2.994-2.824L20.913 9ZM12 10.5c.192 0 .385.072.531.219l3 3a.752.752 0 0 1-1.062 1.062l-1.719-1.72V18a.75.75 0 0 1-1.5 0v-4.94l-1.719 1.721A.752.752 0 0 1 8.47 13.72l3-3A.749.749 0 0 1 12 10.5ZM3.375 3C2.339 3 1.5 3.84 1.5 4.875v.75c0 1.036.84 1.875 1.875 1.875h17.25c1.035 0 1.875-.84 1.875-1.875v-.75C22.5 3.839 21.66 3 20.625 3Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArchiveBoxArrowUpIcon);
module.exports = ForwardRef;