@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.11 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-asterisk" 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="M11.695 5.057 C 11.466 5.129,11.256 5.299,11.128 5.516 L 11.020 5.700 11.009 7.974 C 10.999 9.894,10.989 10.244,10.942 10.226 C 10.911 10.215,10.061 9.729,9.053 9.146 C 8.045 8.564,7.139 8.066,7.040 8.040 C 6.556 7.910,6.031 8.196,5.860 8.681 C 5.741 9.018,5.830 9.430,6.073 9.673 C 6.162 9.762,6.973 10.255,8.091 10.900 C 9.119 11.493,9.960 11.989,9.960 12.002 C 9.960 12.015,9.119 12.510,8.091 13.103 C 6.994 13.735,6.161 14.241,6.073 14.328 C 5.918 14.482,5.800 14.781,5.800 15.020 C 5.800 15.663,6.503 16.158,7.112 15.943 C 7.202 15.911,8.103 15.407,9.115 14.823 C 10.126 14.238,10.964 13.760,10.976 13.760 C 10.988 13.760,11.003 14.783,11.009 16.033 L 11.020 18.306 11.141 18.503 C 11.543 19.156,12.457 19.156,12.859 18.503 L 12.980 18.306 12.991 16.033 C 12.997 14.783,13.012 13.760,13.023 13.760 C 13.034 13.760,13.872 14.238,14.885 14.823 C 15.898 15.407,16.799 15.911,16.888 15.943 C 17.497 16.158,18.200 15.663,18.200 15.020 C 18.200 14.781,18.082 14.482,17.927 14.328 C 17.839 14.241,17.006 13.735,15.909 13.103 C 14.881 12.510,14.040 12.015,14.040 12.002 C 14.040 11.989,14.881 11.493,15.910 10.899 C 17.018 10.260,17.840 9.760,17.928 9.672 C 18.170 9.430,18.259 9.017,18.140 8.681 C 17.969 8.196,17.444 7.910,16.960 8.040 C 16.861 8.066,15.955 8.564,14.947 9.146 C 13.939 9.729,13.089 10.215,13.058 10.226 C 13.011 10.244,13.001 9.894,12.991 7.974 L 12.980 5.700 12.872 5.516 C 12.628 5.101,12.150 4.915,11.695 5.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const AsteriskIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Asterisk = AsteriskIcon;