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-mail-open" 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.490 1.042 C 11.184 1.097,10.812 1.229,10.560 1.372 C 10.268 1.538,2.098 7.665,1.903 7.865 C 1.502 8.275,1.236 8.734,1.095 9.260 C 1.023 9.527,1.020 9.788,1.020 15.040 L 1.020 20.540 1.114 20.840 C 1.422 21.827,2.173 22.578,3.160 22.886 L 3.460 22.980 12.000 22.980 L 20.540 22.980 20.840 22.886 C 21.827 22.578,22.578 21.827,22.886 20.840 L 22.980 20.540 22.980 15.020 C 22.980 9.826,22.976 9.486,22.908 9.260 C 22.742 8.704,22.533 8.335,22.166 7.946 C 21.844 7.607,13.688 1.493,13.308 1.306 C 13.150 1.229,12.912 1.137,12.780 1.102 C 12.486 1.023,11.775 0.990,11.490 1.042 M12.295 3.049 C 12.409 3.082,13.737 4.055,16.601 6.202 C 20.173 8.881,20.945 9.483,20.873 9.537 C 20.776 9.608,12.501 14.849,12.400 14.903 C 12.209 15.004,11.791 15.004,11.600 14.903 C 11.499 14.849,3.225 9.609,3.127 9.537 C 3.120 9.531,3.146 9.477,3.186 9.417 C 3.284 9.267,11.504 3.108,11.680 3.052 C 11.871 2.992,12.099 2.991,12.295 3.049 M6.900 14.301 C 9.032 15.656,10.669 16.672,10.852 16.752 C 11.586 17.071,12.414 17.071,13.148 16.752 C 13.331 16.672,15.008 15.632,17.215 14.228 C 19.280 12.915,20.977 11.840,20.985 11.840 C 20.993 11.840,21.000 13.700,21.000 15.974 C 21.000 20.460,21.007 20.319,20.779 20.618 C 20.718 20.698,20.585 20.813,20.484 20.872 L 20.300 20.980 12.000 20.980 L 3.700 20.980 3.516 20.872 C 3.415 20.813,3.284 20.700,3.225 20.623 C 2.990 20.315,3.000 20.518,3.000 15.991 L 3.000 11.832 3.130 11.909 C 3.201 11.951,4.898 13.028,6.900 14.301 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MailOpenIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MailOpen = MailOpenIcon;