@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.37 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-pull-request" 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 6.991 15.592 C 7.000 10.207,7.005 9.876,7.071 9.855 C 8.341 9.451,9.237 8.646,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 M12.695 5.056 C 12.465 5.130,12.255 5.300,12.128 5.516 C 12.037 5.672,12.020 5.746,12.020 6.000 C 12.020 6.256,12.036 6.328,12.131 6.489 C 12.192 6.592,12.304 6.725,12.381 6.783 C 12.655 6.992,12.695 6.996,14.463 6.998 C 16.360 7.000,16.399 7.006,16.697 7.304 C 17.013 7.620,17.002 7.475,16.990 11.014 L 16.980 14.126 16.720 14.217 C 15.824 14.531,15.024 15.177,14.569 15.953 C 13.320 18.083,14.233 20.785,16.512 21.704 C 18.558 22.528,20.877 21.538,21.704 19.488 C 22.560 17.365,21.464 14.983,19.280 14.217 L 19.020 14.126 19.000 10.773 L 18.979 7.420 18.886 7.140 C 18.558 6.158,17.816 5.420,16.861 5.123 C 16.541 5.024,16.535 5.023,14.700 5.013 C 13.259 5.005,12.824 5.014,12.695 5.056 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 GitPullRequestIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const GitPullRequest = GitPullRequestIcon;