@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.5 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-strikethrough" 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="M8.460 3.045 C 7.809 3.125,6.987 3.483,6.460 3.915 C 5.800 4.457,5.360 5.160,5.112 6.073 C 4.984 6.540,4.986 7.448,5.114 7.940 C 5.166 8.138,5.255 8.387,5.313 8.494 C 5.491 8.826,5.879 9.028,6.261 8.988 C 6.637 8.950,6.920 8.745,7.077 8.400 C 7.180 8.172,7.181 7.935,7.080 7.540 C 6.946 7.018,6.985 6.600,7.211 6.120 C 7.365 5.793,7.768 5.383,8.087 5.230 C 8.579 4.993,8.445 5.000,12.478 4.998 C 15.466 4.997,16.209 4.986,16.330 4.943 C 16.551 4.864,16.744 4.702,16.869 4.489 C 16.964 4.328,16.980 4.256,16.980 4.000 C 16.980 3.746,16.963 3.672,16.872 3.516 C 16.813 3.415,16.698 3.282,16.618 3.221 C 16.320 2.994,16.424 3.000,12.424 3.005 C 10.398 3.008,8.614 3.026,8.460 3.045 M3.695 11.057 C 3.051 11.258,2.799 12.040,3.198 12.591 C 3.263 12.681,3.403 12.805,3.508 12.867 L 3.700 12.980 9.120 13.000 L 14.540 13.020 14.861 13.121 C 15.825 13.426,16.585 14.187,16.875 15.139 C 16.958 15.412,16.973 15.542,16.973 16.000 C 16.973 16.458,16.958 16.588,16.875 16.861 C 16.585 17.811,15.843 18.557,14.860 18.886 L 14.580 18.979 10.160 19.000 C 6.745 19.015,5.714 19.031,5.627 19.070 C 5.428 19.158,5.239 19.328,5.128 19.516 C 5.037 19.672,5.020 19.746,5.020 20.000 C 5.020 20.257,5.036 20.327,5.133 20.492 C 5.261 20.710,5.502 20.901,5.725 20.961 C 5.826 20.989,7.357 20.998,10.289 20.989 C 14.353 20.977,14.724 20.971,15.000 20.905 C 16.543 20.539,17.756 19.614,18.433 18.288 C 18.838 17.494,18.980 16.899,18.980 16.000 C 18.980 15.330,18.922 14.957,18.732 14.400 C 18.605 14.029,18.361 13.534,18.155 13.230 L 17.999 13.000 19.090 12.998 C 20.262 12.996,20.357 12.983,20.619 12.783 C 20.696 12.725,20.808 12.592,20.869 12.489 C 20.964 12.328,20.980 12.256,20.980 12.000 C 20.980 11.746,20.963 11.672,20.872 11.516 C 20.740 11.293,20.533 11.128,20.290 11.055 C 20.027 10.976,3.947 10.978,3.695 11.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const StrikethroughIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Strikethrough = StrikethroughIcon;