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 892 B
const React = require("react"); function ArrowsCrossingIcon({ 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: "M17 16h4m-2.75 2.75L21 16m0 0-2.75-2.75M17 16c-2.49 0-3.985-.612-5.035-1.498m-3.93-5.004C6.985 8.612 5.49 8 3 8m14 0h4m-4 0c-9 0-5 8-14 8M18.25 5.25 21 8m0 0-2.75 2.75" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowsCrossingIcon); module.exports = ForwardRef;