UNPKG

@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-

26 lines 875 B
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 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", "data-slot": "icon", fill: "none", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M10.5 18h8.25A2.25 2.25 0 0 0 21 15.75V5.25A2.25 2.25 0 0 0 18.75 3H8.25A2.25 2.25 0 0 0 6 5.25v8.25m10.5-6L3 21m0 0h5.25M3 21v-5.25" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowBottomLeftOnSquareIcon); module.exports = ForwardRef;