UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.6 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-mails" 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="M7.499 3.043 C 6.380 3.233,5.461 4.048,5.114 5.160 L 5.020 5.460 5.020 10.500 L 5.020 15.540 5.114 15.840 C 5.422 16.827,6.173 17.578,7.160 17.886 L 7.460 17.980 14.000 17.980 L 20.540 17.980 20.840 17.886 C 21.827 17.578,22.578 16.827,22.886 15.840 L 22.980 15.540 22.980 10.500 L 22.980 5.460 22.886 5.160 C 22.581 4.182,21.832 3.428,20.861 3.121 L 20.540 3.020 14.120 3.014 C 10.589 3.011,7.609 3.024,7.499 3.043 M20.310 5.061 C 20.750 5.191,21.018 5.625,20.992 6.163 L 20.980 6.413 17.720 8.150 C 15.927 9.105,14.390 9.913,14.305 9.944 C 14.108 10.015,13.892 10.015,13.695 9.944 C 13.610 9.913,12.073 9.106,10.280 8.150 L 7.020 6.413 7.008 6.163 C 6.983 5.636,7.250 5.193,7.673 5.063 C 7.963 4.974,20.010 4.972,20.310 5.061 M1.695 7.057 C 1.466 7.129,1.256 7.299,1.128 7.516 L 1.020 7.700 1.020 13.640 L 1.020 19.580 1.125 19.887 C 1.296 20.387,1.496 20.704,1.896 21.104 C 2.296 21.504,2.613 21.704,3.113 21.875 L 3.420 21.980 10.773 21.991 C 15.657 21.998,18.177 21.988,18.277 21.961 C 18.498 21.901,18.739 21.710,18.867 21.492 C 18.964 21.327,18.980 21.257,18.980 21.000 C 18.980 20.746,18.963 20.672,18.872 20.516 C 18.740 20.293,18.533 20.128,18.290 20.055 C 18.138 20.009,16.903 20.000,10.981 20.000 C 3.046 20.000,3.635 20.021,3.330 19.725 C 3.246 19.643,3.142 19.505,3.098 19.418 C 3.022 19.264,3.020 19.121,3.000 13.480 L 2.980 7.700 2.872 7.516 C 2.628 7.101,2.150 6.915,1.695 7.057 M9.622 10.065 C 11.051 10.827,12.400 11.538,12.620 11.645 C 13.598 12.122,14.402 12.122,15.380 11.645 C 15.600 11.538,16.949 10.827,18.378 10.065 C 19.807 9.303,20.981 8.680,20.988 8.680 C 20.995 8.680,21.000 10.126,21.000 11.894 C 21.000 15.381,21.003 15.324,20.779 15.618 C 20.718 15.698,20.585 15.813,20.484 15.872 L 20.300 15.980 14.000 15.980 L 7.700 15.980 7.516 15.872 C 7.415 15.813,7.284 15.700,7.225 15.623 C 6.993 15.319,7.000 15.433,7.000 11.915 C 7.000 10.136,7.005 8.680,7.012 8.680 C 7.019 8.680,8.193 9.303,9.622 10.065 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MailsIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Mails = MailsIcon;