UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.5 kB
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-flag-off" 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="M1.670 1.061 C 1.448 1.142,1.250 1.309,1.128 1.516 C 1.036 1.672,1.020 1.745,1.021 2.000 C 1.021 2.213,1.043 2.341,1.095 2.440 C 1.136 2.517,1.581 2.994,2.084 3.501 L 2.999 4.421 3.010 13.364 L 3.020 22.306 3.141 22.503 C 3.543 23.156,4.457 23.156,4.859 22.503 L 4.980 22.306 4.991 18.916 L 5.002 15.526 5.271 15.425 C 6.041 15.134,6.750 15.026,7.880 15.025 C 8.622 15.025,8.750 15.035,9.220 15.134 C 9.840 15.265,10.373 15.439,11.500 15.881 C 13.364 16.610,14.115 16.828,15.220 16.960 L 15.580 17.003 18.500 19.918 C 20.106 21.520,21.483 22.865,21.560 22.905 C 21.659 22.957,21.788 22.979,22.000 22.979 C 22.258 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,18.215 16.793,12.653 11.235 C 3.300 1.889,2.525 1.125,2.343 1.065 C 2.107 0.987,1.874 0.986,1.670 1.061 M7.695 1.054 C 7.048 1.267,6.799 2.040,7.198 2.591 C 7.263 2.681,7.399 2.803,7.500 2.862 C 7.661 2.957,7.749 2.974,8.212 3.007 C 9.234 3.079,9.915 3.260,11.500 3.881 C 13.111 4.511,13.809 4.730,14.780 4.906 C 15.324 5.005,16.881 5.006,17.580 4.908 C 18.010 4.848,18.745 4.690,18.929 4.619 C 18.995 4.593,18.999 4.859,19.009 9.449 L 19.020 14.306 19.141 14.503 C 19.543 15.156,20.457 15.156,20.859 14.503 L 20.980 14.306 20.991 8.585 C 21.002 2.148,21.025 2.631,20.698 2.304 C 20.421 2.028,20.040 1.933,19.694 2.055 C 19.608 2.086,19.433 2.183,19.305 2.273 C 18.706 2.693,17.710 2.941,16.440 2.987 C 15.129 3.035,14.385 2.866,12.340 2.059 C 10.457 1.317,9.535 1.078,8.320 1.021 C 7.989 1.006,7.814 1.015,7.695 1.054 M8.920 10.342 C 12.635 14.059,12.810 14.240,12.600 14.159 C 10.700 13.420,10.130 13.244,9.178 13.101 C 8.063 12.933,6.535 13.007,5.433 13.283 C 5.264 13.325,5.098 13.371,5.063 13.384 C 5.006 13.406,5.000 13.082,5.000 9.924 C 5.000 8.008,5.005 6.440,5.010 6.440 C 5.016 6.440,6.775 8.196,8.920 10.342 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const FlagOffIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const FlagOff = FlagOffIcon;