@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.02 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-spell-check" 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.643 3.069 C 11.260 3.204,11.374 2.996,8.085 9.583 C 5.526 14.708,5.027 15.735,5.010 15.906 C 4.968 16.347,5.251 16.794,5.660 16.934 C 5.906 17.018,6.094 17.018,6.340 16.934 C 6.708 16.809,6.781 16.696,7.740 14.768 L 8.619 13.000 12.000 13.000 L 15.381 13.000 16.260 14.768 C 17.219 16.696,17.292 16.809,17.660 16.934 C 17.906 17.018,18.094 17.018,18.340 16.934 C 18.749 16.794,19.032 16.347,18.990 15.906 C 18.973 15.735,18.474 14.708,15.915 9.583 C 12.573 2.889,12.738 3.188,12.316 3.063 C 12.057 2.986,11.874 2.987,11.643 3.069 M13.190 8.620 C 13.834 9.907,14.360 10.969,14.360 10.980 C 14.360 10.991,13.298 11.000,12.000 11.000 C 10.702 11.000,9.640 10.991,9.640 10.980 C 9.640 10.941,11.980 6.280,12.000 6.280 C 12.011 6.280,12.547 7.333,13.190 8.620 M21.640 17.068 C 21.488 17.121,21.196 17.394,19.731 18.853 L 18.002 20.575 17.271 19.855 C 16.655 19.247,16.509 19.123,16.343 19.067 C 15.865 18.905,15.383 19.083,15.128 19.516 C 15.036 19.672,15.020 19.745,15.021 20.000 C 15.021 20.213,15.043 20.341,15.095 20.440 C 15.197 20.633,17.297 22.740,17.520 22.873 C 17.673 22.964,17.745 22.980,18.000 22.979 C 18.212 22.979,18.341 22.957,18.440 22.905 C 18.632 22.805,22.739 18.705,22.873 18.480 C 22.964 18.328,22.980 18.254,22.980 18.000 C 22.980 17.746,22.963 17.672,22.872 17.516 C 22.617 17.083,22.121 16.903,21.640 17.068 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SpellCheckIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SpellCheck = SpellCheckIcon;