UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.25 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-reply-all" 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="M6.660 6.066 C 6.474 6.122,6.279 6.307,3.847 8.733 C 2.371 10.206,1.188 11.418,1.127 11.520 C 1.036 11.673,1.020 11.745,1.021 12.000 C 1.021 12.212,1.043 12.341,1.095 12.440 C 1.192 12.625,6.292 17.737,6.508 17.865 C 6.967 18.139,7.587 17.968,7.867 17.492 C 7.964 17.327,7.980 17.258,7.979 17.000 C 7.979 16.788,7.957 16.659,7.905 16.560 C 7.865 16.483,6.839 15.425,5.626 14.210 L 3.421 12.000 5.626 9.790 C 6.839 8.574,7.865 7.517,7.905 7.440 C 7.957 7.341,7.979 7.212,7.979 7.000 C 7.980 6.745,7.964 6.672,7.872 6.516 C 7.740 6.293,7.533 6.128,7.290 6.055 C 7.062 5.986,6.915 5.989,6.660 6.066 M11.660 6.066 C 11.474 6.122,11.278 6.308,8.826 8.753 C 5.961 11.609,6.001 11.564,6.001 12.000 C 6.001 12.435,5.964 12.393,8.806 15.226 C 10.244 16.659,11.481 17.862,11.555 17.899 C 12.010 18.128,12.601 17.944,12.867 17.492 C 12.964 17.327,12.980 17.258,12.979 17.000 C 12.979 16.788,12.957 16.659,12.905 16.560 C 12.865 16.483,12.064 15.650,11.126 14.709 L 9.420 12.998 13.980 13.009 L 18.540 13.020 18.861 13.121 C 19.825 13.426,20.584 14.186,20.876 15.139 C 20.969 15.446,20.975 15.522,20.997 16.883 L 21.020 18.307 21.141 18.503 C 21.543 19.156,22.457 19.156,22.859 18.503 L 22.980 18.306 22.980 16.843 C 22.980 15.256,22.962 15.074,22.733 14.400 C 22.196 12.821,20.850 11.573,19.240 11.162 C 18.650 11.011,18.283 11.000,13.792 11.000 L 9.421 11.000 11.126 9.290 C 12.064 8.350,12.865 7.517,12.905 7.440 C 12.957 7.341,12.979 7.212,12.979 7.000 C 12.980 6.745,12.964 6.672,12.872 6.516 C 12.740 6.293,12.533 6.128,12.290 6.055 C 12.062 5.986,11.915 5.989,11.660 6.066 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ReplyAllIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ReplyAll = ReplyAllIcon;