UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.31 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-git-merge" 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="M5.358 2.061 C 3.731 2.315,2.417 3.584,2.083 5.227 C 1.700 7.105,2.756 9.031,4.540 9.711 C 4.716 9.778,4.891 9.843,4.929 9.855 C 4.995 9.876,5.000 10.207,5.009 15.592 L 5.020 21.306 5.141 21.503 C 5.543 22.156,6.457 22.156,6.859 21.503 L 6.980 21.306 7.000 18.168 L 7.020 15.030 7.218 15.285 C 7.504 15.652,8.402 16.539,8.800 16.847 C 10.275 17.988,11.962 18.696,13.750 18.923 L 14.120 18.970 14.161 19.124 C 14.342 19.795,14.844 20.564,15.416 21.045 C 17.505 22.804,20.684 22.017,21.704 19.488 C 22.090 18.530,22.090 17.469,21.705 16.516 C 21.172 15.197,20.001 14.269,18.605 14.058 C 18.121 13.986,17.879 13.986,17.395 14.058 C 16.233 14.234,15.153 14.957,14.569 15.953 C 14.398 16.244,14.160 16.795,14.160 16.900 C 14.160 16.955,14.130 16.961,13.970 16.939 C 12.582 16.747,11.208 16.174,10.100 15.325 C 9.747 15.055,9.190 14.510,8.847 14.100 C 8.016 13.106,7.387 11.788,7.165 10.576 C 7.030 9.838,7.030 9.840,7.093 9.840 C 7.124 9.840,7.301 9.779,7.485 9.705 C 8.515 9.288,9.290 8.514,9.704 7.488 C 10.090 6.530,10.090 5.469,9.705 4.516 C 9.172 3.197,8.001 2.269,6.605 2.058 C 6.144 1.989,5.816 1.990,5.358 2.061 M6.523 4.073 C 7.262 4.266,7.850 4.924,7.967 5.690 C 8.029 6.098,7.967 6.522,7.793 6.880 C 7.638 7.198,7.227 7.625,6.930 7.775 C 6.492 7.997,5.962 8.059,5.508 7.940 C 4.823 7.762,4.249 7.194,4.073 6.523 C 3.683 5.028,5.028 3.683,6.523 4.073 M18.523 16.073 C 19.262 16.266,19.850 16.924,19.967 17.690 C 20.067 18.343,19.873 18.933,19.403 19.404 C 19.002 19.807,18.547 20.000,18.000 20.000 C 17.485 20.000,17.038 19.822,16.653 19.465 C 15.323 18.229,16.189 16.005,18.000 16.005 C 18.143 16.005,18.378 16.036,18.523 16.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const GitMergeIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const GitMerge = GitMergeIcon;