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-arrow-big-down-dash" 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="M8.695 4.057 C 8.466 4.129,8.256 4.299,8.128 4.516 C 8.037 4.672,8.020 4.746,8.020 5.000 C 8.020 5.256,8.036 5.328,8.131 5.489 C 8.256 5.702,8.449 5.864,8.670 5.943 C 8.891 6.022,15.109 6.022,15.330 5.943 C 15.551 5.864,15.744 5.702,15.869 5.489 C 15.964 5.328,15.980 5.256,15.980 5.000 C 15.980 4.746,15.963 4.672,15.872 4.516 C 15.740 4.293,15.533 4.128,15.290 4.055 C 15.030 3.977,8.945 3.979,8.695 4.057 M8.695 8.057 C 8.466 8.129,8.256 8.299,8.128 8.516 L 8.020 8.700 8.008 9.850 L 7.995 11.000 6.448 11.000 C 5.441 11.000,4.844 11.016,4.741 11.045 C 4.502 11.111,4.255 11.300,4.131 11.511 C 4.036 11.672,4.020 11.744,4.020 12.000 C 4.020 12.254,4.036 12.328,4.127 12.480 C 4.263 12.707,11.368 19.805,11.560 19.905 C 11.659 19.957,11.788 19.979,12.000 19.979 C 12.255 19.980,12.327 19.964,12.480 19.873 C 12.583 19.811,14.194 18.229,16.265 16.153 C 19.698 12.713,19.874 12.530,19.940 12.325 C 20.073 11.914,19.943 11.469,19.618 11.221 C 19.342 11.011,19.242 11.000,17.556 11.000 L 16.005 11.000 15.992 9.850 L 15.980 8.700 15.872 8.516 C 15.740 8.293,15.533 8.128,15.290 8.055 C 15.030 7.977,8.945 7.979,8.695 8.057 M14.002 11.090 C 14.004 12.262,14.017 12.357,14.217 12.619 C 14.275 12.696,14.408 12.808,14.511 12.869 C 14.700 12.980,14.702 12.980,15.630 13.000 L 16.561 13.020 14.280 15.300 L 12.000 17.580 9.720 15.300 L 7.439 13.020 8.370 13.000 C 9.298 12.980,9.300 12.980,9.489 12.869 C 9.592 12.808,9.725 12.696,9.783 12.619 C 9.983 12.357,9.996 12.262,9.998 11.090 L 10.000 10.000 12.000 10.000 L 14.000 10.000 14.002 11.090 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ArrowBigDownDashIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ArrowBigDownDash = ArrowBigDownDashIcon;