UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.37 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-rail-symbol" 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="M9.670 3.061 C 9.448 3.142,9.250 3.309,9.128 3.516 C 9.036 3.672,9.020 3.745,9.021 4.000 C 9.021 4.212,9.043 4.341,9.095 4.440 C 9.135 4.517,9.936 5.350,10.874 6.290 L 12.579 8.000 8.736 8.000 C 4.565 8.000,4.680 7.994,4.382 8.221 C 4.302 8.282,4.187 8.415,4.128 8.516 C 4.037 8.672,4.020 8.746,4.020 9.000 C 4.020 9.256,4.036 9.328,4.131 9.489 C 4.256 9.702,4.449 9.864,4.670 9.943 C 4.791 9.986,5.563 9.997,8.700 9.998 L 12.580 10.000 10.580 12.000 L 8.580 14.000 6.737 14.000 C 4.735 14.000,4.663 14.007,4.382 14.221 C 4.302 14.282,4.187 14.415,4.128 14.516 C 4.037 14.672,4.020 14.746,4.020 15.000 C 4.020 15.256,4.036 15.328,4.131 15.489 C 4.256 15.702,4.449 15.864,4.670 15.943 C 4.787 15.985,5.234 15.997,6.700 15.998 L 8.580 16.000 10.960 18.383 C 12.269 19.693,13.416 20.810,13.508 20.865 C 13.967 21.139,14.587 20.968,14.867 20.492 C 14.964 20.327,14.980 20.258,14.979 20.000 C 14.979 19.788,14.957 19.659,14.905 19.560 C 14.865 19.483,14.064 18.651,13.126 17.710 L 11.421 16.000 15.301 15.998 C 18.437 15.997,19.209 15.986,19.330 15.943 C 19.551 15.864,19.744 15.702,19.869 15.489 C 19.964 15.328,19.980 15.256,19.980 15.000 C 19.980 14.746,19.963 14.672,19.872 14.516 C 19.813 14.415,19.698 14.282,19.618 14.221 C 19.320 13.994,19.435 14.000,15.264 14.000 L 11.420 14.000 13.420 12.000 L 15.420 10.000 17.300 9.998 C 18.766 9.997,19.213 9.985,19.330 9.943 C 19.551 9.864,19.744 9.702,19.869 9.489 C 19.964 9.328,19.980 9.256,19.980 9.000 C 19.980 8.746,19.963 8.672,19.872 8.516 C 19.813 8.415,19.698 8.282,19.618 8.221 C 19.337 8.007,19.265 8.000,17.265 8.000 L 15.422 8.000 12.981 5.565 C 10.770 3.360,10.521 3.124,10.343 3.065 C 10.107 2.987,9.874 2.986,9.670 3.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const RailSymbolIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const RailSymbol = RailSymbolIcon;