@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 • 2.46 kB
JavaScript
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 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: "M3 5.25a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75c2.139 0 3.308.46 4.059 1.078.172.143.323.3.462.465.176-.453.392-.944.692-1.445a5.006 5.006 0 0 0-.201-.176C6.942 5.79 5.362 5.25 3 5.25Zm11.217 5.252a.75.75 0 0 0-.52.242.75.75 0 0 0 .047 1.059l1.578 1.447H14.25c-1.675 0-2.452-.413-3-1.008a3.137 3.137 0 0 1-.307-.402c-.212.454-.47.931-.81 1.4l.015.018c.835.905 2.152 1.492 4.102 1.492h1.072l-1.578 1.447a.75.75 0 0 0-.047 1.059.75.75 0 0 0 1.059.047l3-2.75a.75.75 0 0 0 .012-.016.75.75 0 0 0 .021-.025.75.75 0 0 0 .014-.006.75.75 0 0 0 .06-.098.75.75 0 0 0 .075-.123.75.75 0 0 0 .035-.14.75.75 0 0 0 .023-.135A.75.75 0 0 0 18 14a.75.75 0 0 0-.002-.014.75.75 0 0 0-.021-.109.75.75 0 0 0-.004-.022.75.75 0 0 0-.004-.017.75.75 0 0 0-.022-.108.75.75 0 0 0-.013-.033.75.75 0 0 0-.063-.093.75.75 0 0 0-.008-.012.75.75 0 0 0-.01-.014.75.75 0 0 0-.05-.084.75.75 0 0 0-.006-.004.75.75 0 0 0-.035-.033.75.75 0 0 0-.006-.01l-3-2.75a.75.75 0 0 0-.54-.195zm.539-7.805a.75.75 0 0 0-1.059.047.75.75 0 0 0 .047 1.059l1.578 1.447H14.25c-1.95 0-3.267.587-4.102 1.492-.834.905-1.184 2.007-1.566 2.985-.382.977-.773 1.827-1.523 2.445-.75.618-1.92 1.078-4.059 1.078a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75c2.361 0 3.942-.54 5.012-1.422 1.07-.882 1.57-2.032 1.968-3.055.4-1.022.722-1.92 1.27-2.515.548-.595 1.325-1.008 3-1.008h1.072l-1.578 1.447a.75.75 0 0 0-.047 1.059.75.75 0 0 0 1.059.047l3-2.75a.75.75 0 0 0 .012-.016.75.75 0 0 0 .021-.025.75.75 0 0 0 .014-.006.75.75 0 0 0 .06-.098.75.75 0 0 0 .075-.123.75.75 0 0 0 .035-.14.75.75 0 0 0 .023-.135A.75.75 0 0 0 18 6a.75.75 0 0 0-.002-.014.75.75 0 0 0-.021-.109.75.75 0 0 0-.004-.022.75.75 0 0 0-.004-.017.75.75 0 0 0-.022-.108.75.75 0 0 0-.013-.033.75.75 0 0 0-.063-.093.75.75 0 0 0-.008-.012.75.75 0 0 0-.01-.014.75.75 0 0 0-.05-.084.75.75 0 0 0-.006-.004.75.75 0 0 0-.035-.033.75.75 0 0 0-.006-.01z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowsCrossingIcon);
module.exports = ForwardRef;