@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 1.83 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/* eslint-disable no-shadow-restricted-names */
import { Icon } from "@react-three/uikit";
import { forwardRef } from "react";
const text = `<svg class="lucide lucide-send-horizontal" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3.061 2.067 C 2.407 2.267,1.968 2.901,2.011 3.580 C 2.027 3.829,2.195 4.303,3.504 7.800 C 4.887 11.497,4.978 11.756,4.978 12.000 C 4.978 12.244,4.888 12.501,3.504 16.200 C 1.855 20.606,1.904 20.442,2.079 20.960 C 2.333 21.710,3.128 22.155,3.860 21.956 C 4.012 21.915,21.353 13.748,22.090 13.371 C 22.488 13.167,22.712 12.947,22.873 12.600 C 22.961 12.413,22.976 12.324,22.976 12.000 C 22.976 11.674,22.961 11.587,22.870 11.389 C 22.809 11.257,22.673 11.068,22.552 10.948 C 22.347 10.745,22.032 10.592,13.200 6.421 C 8.173 4.047,3.971 2.081,3.861 2.053 C 3.605 1.985,3.311 1.990,3.061 2.067 M11.600 7.879 C 15.197 9.577,18.148 10.975,18.157 10.984 C 18.166 10.993,15.614 11.000,12.487 11.000 C 8.870 11.000,6.800 10.986,6.800 10.961 C 6.800 10.940,6.321 9.640,5.737 8.071 C 5.152 6.503,4.613 5.055,4.539 4.853 L 4.406 4.486 4.733 4.638 C 4.913 4.721,8.003 6.180,11.600 7.879 M18.080 13.058 C 17.973 13.116,4.963 19.265,4.612 19.423 L 4.405 19.517 4.458 19.368 C 4.487 19.287,5.026 17.838,5.655 16.148 C 6.285 14.458,6.800 13.059,6.800 13.038 C 6.800 13.014,8.931 13.001,12.490 13.002 C 17.310 13.003,18.165 13.012,18.080 13.058 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SendHorizontalIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SendHorizontal = SendHorizontalIcon;