@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.51 kB
JavaScript
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-trending-up-down" 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="M15.695 2.057 C 15.466 2.129,15.256 2.299,15.128 2.516 C 15.037 2.672,15.020 2.746,15.020 3.000 C 15.020 3.256,15.036 3.328,15.131 3.489 C 15.192 3.592,15.304 3.725,15.381 3.783 C 15.650 3.989,15.716 3.996,17.200 3.998 L 18.580 4.000 15.291 7.289 L 12.001 10.579 10.271 8.855 C 8.721 7.312,8.519 7.124,8.343 7.066 C 8.094 6.983,7.907 6.983,7.657 7.065 C 7.478 7.125,7.183 7.407,4.347 10.235 C 2.635 11.943,1.189 13.416,1.134 13.508 C 0.862 13.968,1.032 14.587,1.508 14.867 C 1.673 14.964,1.742 14.980,2.000 14.979 C 2.212 14.979,2.341 14.957,2.440 14.905 C 2.517 14.865,3.799 13.614,5.290 12.126 L 8.000 9.421 9.710 11.126 C 10.650 12.064,11.483 12.865,11.560 12.905 C 11.754 13.007,12.246 13.007,12.440 12.905 C 12.517 12.865,14.249 11.165,16.288 9.128 L 19.996 5.424 20.008 6.865 L 20.020 8.306 20.141 8.503 C 20.543 9.156,21.457 9.156,21.859 8.503 L 21.980 8.306 21.991 5.563 C 22.002 3.089,21.996 2.803,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.540 2.003 C 16.466 2.005,15.823 2.017,15.695 2.057 M14.487 13.885 C 14.294 13.941,13.938 14.304,13.884 14.500 C 13.817 14.745,13.833 15.039,13.923 15.240 C 13.985 15.377,14.546 15.962,16.291 17.710 L 18.579 20.000 17.236 20.000 C 15.775 20.000,15.653 20.015,15.382 20.221 C 15.302 20.282,15.187 20.415,15.128 20.516 C 15.037 20.672,15.020 20.746,15.020 21.000 C 15.020 21.256,15.036 21.328,15.131 21.489 C 15.256 21.702,15.449 21.864,15.670 21.943 C 15.790 21.986,16.368 21.997,18.520 21.998 L 21.220 21.999 21.420 21.906 C 21.657 21.796,21.845 21.595,21.936 21.354 C 21.996 21.197,22.002 20.911,21.991 18.440 L 21.980 15.700 21.871 15.514 C 21.479 14.848,20.521 14.848,20.129 15.514 L 20.020 15.700 20.008 17.138 L 19.996 18.575 17.708 16.289 C 15.962 14.545,15.377 13.985,15.240 13.923 C 15.046 13.835,14.718 13.819,14.487 13.885 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const TrendingUpDownIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const TrendingUpDown = TrendingUpDownIcon;