@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.43 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-align-vertical-space-around" 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="M1.695 3.057 C 1.466 3.129,1.256 3.299,1.128 3.516 C 1.037 3.672,1.020 3.746,1.020 4.000 C 1.020 4.256,1.036 4.328,1.131 4.489 C 1.256 4.702,1.449 4.864,1.670 4.943 C 1.893 5.023,22.107 5.023,22.330 4.943 C 22.551 4.864,22.744 4.702,22.869 4.489 C 22.964 4.328,22.980 4.256,22.980 4.000 C 22.980 3.746,22.963 3.672,22.872 3.516 C 22.740 3.293,22.533 3.128,22.290 3.055 C 22.027 2.976,1.948 2.978,1.695 3.057 M8.499 8.042 C 7.377 8.234,6.461 9.048,6.114 10.160 C 6.022 10.453,6.020 10.497,6.020 12.000 C 6.020 13.503,6.022 13.547,6.114 13.840 C 6.422 14.827,7.173 15.578,8.160 15.886 L 8.460 15.980 12.020 15.980 L 15.580 15.980 15.887 15.875 C 16.861 15.543,17.585 14.807,17.886 13.840 C 17.978 13.547,17.980 13.503,17.980 12.000 C 17.980 10.497,17.978 10.453,17.886 10.160 C 17.581 9.182,16.831 8.427,15.861 8.122 L 15.540 8.021 12.120 8.014 C 10.239 8.011,8.609 8.023,8.499 8.042 M15.310 10.061 C 15.589 10.144,15.856 10.411,15.939 10.690 C 16.023 10.972,16.028 13.015,15.945 13.290 C 15.872 13.533,15.707 13.740,15.484 13.872 L 15.300 13.980 12.000 13.980 L 8.700 13.980 8.516 13.872 C 8.303 13.747,8.141 13.550,8.058 13.316 C 7.972 13.071,7.974 10.982,8.061 10.690 C 8.140 10.421,8.412 10.143,8.673 10.063 C 8.961 9.975,15.013 9.972,15.310 10.061 M1.695 19.057 C 1.466 19.129,1.256 19.299,1.128 19.516 C 1.037 19.672,1.020 19.746,1.020 20.000 C 1.020 20.256,1.036 20.328,1.131 20.489 C 1.256 20.702,1.449 20.864,1.670 20.943 C 1.893 21.023,22.107 21.023,22.330 20.943 C 22.551 20.864,22.744 20.702,22.869 20.489 C 22.964 20.328,22.980 20.256,22.980 20.000 C 22.980 19.746,22.963 19.672,22.872 19.516 C 22.740 19.293,22.533 19.128,22.290 19.055 C 22.027 18.976,1.948 18.978,1.695 19.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const AlignVerticalSpaceAroundIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const AlignVerticalSpaceAround = AlignVerticalSpaceAroundIcon;