@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.61 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-between-horizontal-start" 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="M8.477 2.073 C 7.806 2.249,7.238 2.823,7.060 3.508 C 7.010 3.700,7.000 4.180,7.000 6.500 C 7.000 9.501,6.999 9.484,7.225 9.930 C 7.361 10.199,7.801 10.639,8.070 10.775 C 8.536 11.011,8.219 11.000,14.500 11.000 C 20.781 11.000,20.464 11.011,20.930 10.775 C 21.196 10.640,21.638 10.200,21.771 9.937 C 22.000 9.485,22.000 9.489,21.999 6.514 C 21.999 3.558,21.995 3.505,21.781 3.083 C 21.646 2.816,21.297 2.449,21.017 2.281 C 20.530 1.988,20.925 2.005,14.500 2.005 C 9.184 2.005,8.720 2.010,8.477 2.073 M20.000 6.500 L 20.000 9.000 14.500 9.000 L 9.000 9.000 9.000 6.500 L 9.000 4.000 14.500 4.000 L 20.000 4.000 20.000 6.500 M1.670 8.061 C 1.448 8.142,1.250 8.309,1.128 8.516 C 1.036 8.672,1.020 8.745,1.021 9.000 C 1.021 9.213,1.043 9.341,1.095 9.440 C 1.136 9.517,1.711 10.125,2.374 10.790 L 3.578 12.000 2.374 13.210 C 1.711 13.876,1.138 14.481,1.101 14.555 C 0.872 15.009,1.056 15.601,1.508 15.867 C 1.673 15.964,1.742 15.980,2.000 15.979 C 2.212 15.979,2.341 15.957,2.440 15.905 C 2.632 15.804,5.739 12.704,5.873 12.480 C 5.964 12.328,5.980 12.254,5.980 12.000 C 5.980 11.746,5.963 11.672,5.873 11.520 C 5.814 11.421,5.040 10.618,4.153 9.736 C 2.714 8.305,2.519 8.124,2.343 8.066 C 2.108 7.987,1.875 7.986,1.670 8.061 M8.477 13.073 C 7.806 13.249,7.238 13.823,7.060 14.508 C 7.010 14.700,7.000 15.180,7.000 17.500 C 7.000 20.501,6.999 20.484,7.225 20.930 C 7.361 21.199,7.801 21.639,8.070 21.775 C 8.536 22.011,8.219 22.000,14.500 22.000 C 20.781 22.000,20.464 22.011,20.930 21.775 C 21.196 21.640,21.638 21.200,21.771 20.937 C 22.000 20.485,22.000 20.489,21.999 17.514 C 21.999 14.558,21.995 14.505,21.781 14.083 C 21.646 13.816,21.297 13.449,21.017 13.281 C 20.530 12.988,20.925 13.005,14.500 13.005 C 9.184 13.005,8.720 13.010,8.477 13.073 M20.000 17.500 L 20.000 20.000 14.500 20.000 L 9.000 20.000 9.000 17.500 L 9.000 15.000 14.500 15.000 L 20.000 15.000 20.000 17.500 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BetweenHorizontalStartIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const BetweenHorizontalStart = BetweenHorizontalStartIcon;