@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.01 kB
JavaScript
const React = require("react");
function ArrowBottomLeftOnSquareIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
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: "M13.806 6.747a.75.75 0 0 0-1.06-.053L3.5 15.06v-2.81a.75.75 0 0 0-1.5 0v4.5c0 .414.336.75.75.75h4.5a.75.75 0 0 0 0-1.5H4.697l9.056-8.194a.75.75 0 0 0 .053-1.06zM15.75 14a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-.75-.75h-8.5a.75.75 0 0 0-.75.75v4a.75.75 0 0 1-1.5 0v-4A2.25 2.25 0 0 1 7.25 2.5h8.5A2.25 2.25 0 0 1 18 4.75v8.5a2.25 2.25 0 0 1-2.25 2.25h-5a.75.75 0 0 1 0-1.5Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowBottomLeftOnSquareIcon);
module.exports = ForwardRef;