@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.63 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-indent-increase" 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="M10.695 5.057 C 10.466 5.129,10.256 5.299,10.128 5.516 C 10.037 5.672,10.020 5.746,10.020 6.000 C 10.020 6.256,10.036 6.328,10.131 6.489 C 10.256 6.702,10.449 6.864,10.670 6.943 C 10.892 7.022,21.108 7.022,21.330 6.943 C 21.551 6.864,21.744 6.702,21.869 6.489 C 21.964 6.328,21.980 6.256,21.980 6.000 C 21.980 5.746,21.963 5.672,21.872 5.516 C 21.740 5.293,21.533 5.128,21.290 5.055 C 21.028 4.976,10.946 4.978,10.695 5.057 M2.670 7.061 C 2.448 7.142,2.250 7.309,2.128 7.516 C 2.036 7.672,2.020 7.745,2.021 8.000 C 2.021 8.212,2.043 8.341,2.095 8.440 C 2.135 8.517,2.936 9.350,3.874 10.290 L 5.579 12.000 3.874 13.710 C 2.936 14.650,2.138 15.481,2.101 15.555 C 1.872 16.010,2.056 16.601,2.508 16.867 C 2.673 16.964,2.743 16.980,3.000 16.980 C 3.254 16.980,3.328 16.964,3.480 16.873 C 3.705 16.739,7.805 12.632,7.905 12.440 C 7.957 12.341,7.979 12.212,7.979 12.000 C 7.980 11.745,7.964 11.673,7.873 11.520 C 7.813 11.419,6.834 10.412,5.653 9.235 C 3.748 7.338,3.521 7.124,3.343 7.065 C 3.107 6.987,2.874 6.986,2.670 7.061 M10.695 11.057 C 10.466 11.129,10.256 11.299,10.128 11.516 C 10.037 11.672,10.020 11.746,10.020 12.000 C 10.020 12.256,10.036 12.328,10.131 12.489 C 10.256 12.702,10.449 12.864,10.670 12.943 C 10.892 13.022,21.108 13.022,21.330 12.943 C 21.551 12.864,21.744 12.702,21.869 12.489 C 21.964 12.328,21.980 12.256,21.980 12.000 C 21.980 11.746,21.963 11.672,21.872 11.516 C 21.740 11.293,21.533 11.128,21.290 11.055 C 21.028 10.976,10.946 10.978,10.695 11.057 M10.695 17.057 C 10.466 17.129,10.256 17.299,10.128 17.516 C 10.037 17.672,10.020 17.746,10.020 18.000 C 10.020 18.256,10.036 18.328,10.131 18.489 C 10.256 18.702,10.449 18.864,10.670 18.943 C 10.892 19.022,21.108 19.022,21.330 18.943 C 21.551 18.864,21.744 18.702,21.869 18.489 C 21.964 18.328,21.980 18.256,21.980 18.000 C 21.980 17.746,21.963 17.672,21.872 17.516 C 21.740 17.293,21.533 17.128,21.290 17.055 C 21.028 16.976,10.946 16.978,10.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const IndentIncreaseIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const IndentIncrease = IndentIncreaseIcon;