UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.32 kB
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-separator-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="M11.640 3.068 C 11.486 3.121,11.151 3.438,9.347 5.235 C 8.185 6.393,7.189 7.416,7.134 7.508 C 6.862 7.968,7.032 8.587,7.508 8.867 C 7.673 8.964,7.742 8.980,8.000 8.979 C 8.212 8.979,8.341 8.957,8.440 8.905 C 8.517 8.865,9.350 8.064,10.290 7.126 L 12.000 5.421 13.710 7.126 C 14.650 8.064,15.483 8.865,15.560 8.905 C 15.659 8.957,15.788 8.979,16.000 8.979 C 16.258 8.980,16.327 8.964,16.492 8.867 C 16.968 8.587,17.138 7.968,16.866 7.508 C 16.811 7.416,15.815 6.393,14.653 5.235 C 12.748 3.338,12.521 3.124,12.343 3.065 C 12.102 2.985,11.878 2.986,11.640 3.068 M2.695 11.057 C 2.466 11.129,2.256 11.299,2.128 11.516 C 2.037 11.672,2.020 11.746,2.020 12.000 C 2.020 12.256,2.036 12.328,2.131 12.489 C 2.256 12.702,2.449 12.864,2.670 12.943 C 2.893 13.023,21.107 13.023,21.330 12.943 C 21.551 12.864,21.744 12.702,21.869 12.489 C 21.964 12.328,21.980 12.256,21.980 12.000 C 21.980 11.746,21.963 11.672,21.872 11.516 C 21.740 11.293,21.533 11.128,21.290 11.055 C 21.027 10.976,2.947 10.978,2.695 11.057 M7.670 15.061 C 7.448 15.142,7.250 15.309,7.128 15.516 C 7.037 15.672,7.020 15.746,7.020 16.000 C 7.020 16.254,7.036 16.328,7.127 16.480 C 7.261 16.705,11.368 20.805,11.560 20.905 C 11.660 20.957,11.787 20.978,12.000 20.978 C 12.213 20.978,12.340 20.957,12.440 20.905 C 12.632 20.805,16.739 16.705,16.873 16.480 C 16.964 16.328,16.980 16.254,16.980 16.000 C 16.980 15.746,16.963 15.672,16.872 15.516 C 16.618 15.084,16.137 14.906,15.657 15.066 C 15.481 15.124,15.279 15.312,13.730 16.854 L 12.000 18.577 10.270 16.854 C 8.721 15.312,8.519 15.124,8.343 15.066 C 8.108 14.987,7.875 14.986,7.670 15.061 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const SeparatorHorizontalIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const SeparatorHorizontal = SeparatorHorizontalIcon;