@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.24 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-tag" 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="M3.499 1.042 C 2.388 1.232,1.488 2.024,1.114 3.140 L 1.020 3.420 1.009 7.446 C 0.996 11.831,0.992 11.724,1.223 12.305 C 1.283 12.456,1.404 12.688,1.491 12.820 C 1.662 13.077,10.368 21.829,10.840 22.218 C 11.182 22.500,11.616 22.730,12.060 22.864 C 12.381 22.962,12.483 22.974,13.000 22.974 C 13.517 22.974,13.619 22.962,13.940 22.864 C 14.384 22.730,14.818 22.500,15.160 22.219 C 15.612 21.847,22.255 15.158,22.408 14.920 C 22.627 14.580,22.749 14.316,22.866 13.932 C 22.961 13.620,22.974 13.515,22.974 13.000 C 22.974 12.483,22.962 12.381,22.864 12.060 C 22.730 11.616,22.500 11.182,22.218 10.840 C 21.900 10.453,13.090 1.671,12.880 1.531 C 12.622 1.359,12.342 1.223,12.020 1.115 L 11.740 1.020 7.720 1.014 C 5.509 1.011,3.609 1.024,3.499 1.042 M11.620 3.107 C 11.849 3.232,20.729 12.133,20.833 12.342 C 21.025 12.727,21.024 13.273,20.833 13.658 C 20.780 13.764,19.556 15.018,17.306 17.272 C 13.385 21.199,13.638 20.982,13.001 20.978 C 12.360 20.975,12.783 21.350,7.707 16.284 C 5.076 13.658,3.158 11.713,3.107 11.620 L 3.020 11.460 3.009 7.683 C 2.997 3.399,2.982 3.624,3.303 3.303 C 3.619 2.988,3.378 3.004,7.660 3.012 L 11.460 3.020 11.620 3.107 M7.174 6.039 C 6.750 6.129,6.329 6.477,6.132 6.900 C 6.035 7.107,6.020 7.190,6.020 7.500 C 6.020 7.811,6.035 7.894,6.133 8.104 C 6.276 8.413,6.585 8.721,6.900 8.868 C 7.107 8.965,7.190 8.980,7.500 8.980 C 7.810 8.980,7.893 8.965,8.100 8.868 C 8.415 8.721,8.724 8.413,8.867 8.104 C 8.965 7.894,8.980 7.811,8.980 7.500 C 8.980 7.189,8.965 7.106,8.867 6.896 C 8.727 6.592,8.415 6.278,8.119 6.143 C 7.870 6.030,7.441 5.982,7.174 6.039 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const TagIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Tag = TagIcon;