UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.13 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-file-warning" 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="M5.499 1.043 C 4.380 1.232,3.461 2.048,3.114 3.160 L 3.020 3.460 3.020 12.000 L 3.020 20.540 3.114 20.840 C 3.422 21.827,4.173 22.578,5.160 22.886 L 5.460 22.980 12.000 22.980 L 18.540 22.980 18.840 22.886 C 19.816 22.582,20.554 21.851,20.886 20.860 L 20.980 20.580 20.991 13.723 C 21.001 7.466,20.996 6.848,20.936 6.663 C 20.876 6.475,20.673 6.262,18.225 3.816 C 16.452 2.043,15.527 1.147,15.420 1.096 C 15.266 1.023,15.085 1.020,10.480 1.014 C 7.851 1.011,5.609 1.024,5.499 1.043 M16.790 5.210 L 19.000 7.420 19.000 13.764 C 19.000 19.023,18.991 20.138,18.945 20.290 C 18.872 20.533,18.707 20.740,18.484 20.872 L 18.300 20.980 12.000 20.980 L 5.700 20.980 5.516 20.872 C 5.415 20.813,5.284 20.700,5.225 20.623 C 4.985 20.308,5.000 20.888,5.000 12.022 C 5.000 2.888,4.974 3.632,5.304 3.303 C 5.619 2.988,5.320 3.006,10.220 3.003 L 14.580 3.000 16.790 5.210 M11.695 8.057 C 11.466 8.129,11.256 8.299,11.128 8.516 L 11.020 8.700 11.020 11.003 L 11.020 13.306 11.141 13.503 C 11.209 13.613,11.346 13.756,11.452 13.828 C 11.923 14.144,12.554 13.999,12.859 13.503 L 12.980 13.306 12.980 11.003 L 12.980 8.700 12.872 8.516 C 12.628 8.101,12.150 7.915,11.695 8.057 M11.695 16.055 C 11.464 16.130,11.255 16.300,11.128 16.516 C 11.037 16.672,11.020 16.746,11.020 17.000 C 11.020 17.257,11.036 17.327,11.133 17.492 C 11.651 18.374,12.998 18.018,12.998 17.000 C 12.998 16.623,12.792 16.281,12.463 16.112 C 12.265 16.010,11.911 15.984,11.695 16.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const FileWarningIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const FileWarning = FileWarningIcon;