UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.07 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-download" 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.695 2.057 C 11.466 2.129,11.256 2.299,11.128 2.516 L 11.020 2.700 11.009 7.638 L 10.999 12.576 9.269 10.854 C 7.721 9.312,7.519 9.124,7.343 9.066 C 6.863 8.906,6.382 9.084,6.128 9.516 C 6.036 9.672,6.020 9.745,6.021 10.000 C 6.021 10.212,6.043 10.341,6.095 10.440 C 6.135 10.517,7.341 11.756,8.774 13.194 C 11.607 16.036,11.565 15.999,12.000 15.999 C 12.435 15.999,12.393 16.036,15.226 13.194 C 16.659 11.756,17.865 10.517,17.905 10.440 C 17.957 10.341,17.979 10.212,17.979 10.000 C 17.980 9.745,17.964 9.672,17.872 9.516 C 17.618 9.084,17.137 8.906,16.657 9.066 C 16.481 9.124,16.279 9.312,14.731 10.854 L 13.001 12.576 12.991 7.638 L 12.980 2.700 12.872 2.516 C 12.628 2.101,12.150 1.915,11.695 2.057 M2.695 14.057 C 2.466 14.129,2.256 14.299,2.128 14.516 L 2.020 14.700 2.020 17.120 L 2.020 19.540 2.114 19.840 C 2.422 20.827,3.173 21.578,4.160 21.886 L 4.460 21.980 12.000 21.980 L 19.540 21.980 19.840 21.886 C 20.827 21.578,21.578 20.827,21.886 19.840 L 21.980 19.540 21.980 17.120 L 21.980 14.700 21.871 14.514 C 21.479 13.848,20.521 13.848,20.129 14.514 L 20.020 14.700 20.000 16.980 C 19.985 18.681,19.967 19.289,19.930 19.373 C 19.842 19.572,19.672 19.761,19.484 19.872 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.328 19.761,4.158 19.572,4.070 19.373 C 4.033 19.289,4.015 18.681,4.000 16.980 L 3.980 14.700 3.872 14.516 C 3.628 14.101,3.150 13.915,2.695 14.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const DownloadIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Download = DownloadIcon;