@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.4 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-git-branch" 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.695 2.057 C 5.466 2.129,5.256 2.299,5.128 2.516 L 5.020 2.700 5.000 8.413 L 4.980 14.126 4.720 14.217 C 3.824 14.531,3.024 15.177,2.569 15.953 C 1.320 18.083,2.233 20.785,4.512 21.704 C 5.471 22.090,6.529 22.090,7.488 21.704 C 8.502 21.295,9.305 20.495,9.700 19.500 C 9.761 19.346,9.827 19.164,9.846 19.095 C 9.880 18.972,9.885 18.970,10.250 18.923 C 12.038 18.696,13.725 17.988,15.200 16.847 C 15.637 16.509,16.509 15.637,16.847 15.200 C 17.988 13.725,18.696 12.038,18.923 10.250 C 18.970 9.885,18.972 9.880,19.095 9.846 C 20.031 9.585,20.920 8.901,21.436 8.044 C 21.923 7.238,22.108 6.163,21.921 5.243 C 21.628 3.806,20.637 2.680,19.245 2.204 C 18.951 2.103,18.322 2.000,18.000 2.000 C 16.635 2.000,15.253 2.787,14.569 3.953 C 13.320 6.082,14.233 8.785,16.511 9.703 C 16.697 9.778,16.876 9.840,16.907 9.840 C 16.970 9.840,16.970 9.838,16.835 10.576 C 16.614 11.785,15.982 13.109,15.153 14.100 C 14.810 14.510,14.253 15.055,13.900 15.325 C 12.792 16.174,11.418 16.747,10.030 16.939 C 9.879 16.959,9.840 16.953,9.840 16.907 C 9.840 16.807,9.575 16.189,9.421 15.932 C 8.965 15.168,8.165 14.527,7.280 14.217 L 7.020 14.126 7.000 8.413 L 6.980 2.700 6.872 2.516 C 6.628 2.101,6.150 1.915,5.695 2.057 M18.523 4.073 C 19.262 4.266,19.850 4.924,19.967 5.690 C 20.029 6.098,19.967 6.522,19.793 6.880 C 19.638 7.198,19.227 7.625,18.930 7.775 C 18.492 7.997,17.962 8.059,17.508 7.940 C 16.823 7.762,16.249 7.194,16.073 6.523 C 15.683 5.028,17.028 3.683,18.523 4.073 M6.523 16.073 C 7.262 16.266,7.850 16.924,7.967 17.690 C 8.067 18.343,7.873 18.933,7.403 19.404 C 7.002 19.807,6.547 20.000,6.000 20.000 C 5.485 20.000,5.038 19.822,4.653 19.465 C 3.323 18.229,4.189 16.005,6.000 16.005 C 6.143 16.005,6.378 16.036,6.523 16.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const GitBranchIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const GitBranch = GitBranchIcon;