@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.08 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-horizontal-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="M3.695 1.057 C 3.466 1.129,3.256 1.299,3.128 1.516 L 3.020 1.700 3.020 12.003 L 3.020 22.306 3.141 22.503 C 3.543 23.156,4.457 23.156,4.859 22.503 L 4.980 22.306 4.980 12.003 L 4.980 1.700 4.872 1.516 C 4.628 1.101,4.150 0.915,3.695 1.057 M19.695 1.057 C 19.466 1.129,19.256 1.299,19.128 1.516 L 19.020 1.700 19.020 12.003 L 19.020 22.306 19.141 22.503 C 19.543 23.156,20.457 23.156,20.859 22.503 L 20.980 22.306 20.980 12.003 L 20.980 1.700 20.872 1.516 C 20.628 1.101,20.150 0.915,19.695 1.057 M10.499 6.042 C 9.372 6.239,8.461 7.048,8.114 8.160 L 8.020 8.460 8.020 12.000 L 8.020 15.540 8.114 15.840 C 8.422 16.827,9.173 17.578,10.160 17.886 C 10.453 17.978,10.497 17.980,12.000 17.980 C 13.503 17.980,13.547 17.978,13.840 17.886 C 14.827 17.578,15.578 16.827,15.886 15.840 L 15.980 15.540 15.980 12.000 L 15.980 8.460 15.886 8.160 C 15.581 7.181,14.825 6.421,13.861 6.124 C 13.548 6.027,13.504 6.024,12.120 6.015 C 11.339 6.010,10.609 6.022,10.499 6.042 M13.310 8.061 C 13.589 8.144,13.856 8.411,13.939 8.690 C 14.025 8.980,14.031 15.004,13.945 15.290 C 13.872 15.533,13.707 15.740,13.484 15.872 L 13.300 15.980 12.000 15.980 L 10.700 15.980 10.516 15.872 C 10.303 15.747,10.141 15.550,10.058 15.316 C 9.969 15.063,9.971 8.991,10.061 8.690 C 10.140 8.421,10.412 8.143,10.673 8.063 C 10.952 7.977,13.023 7.975,13.310 8.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const AlignHorizontalSpaceAroundIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const AlignHorizontalSpaceAround = AlignHorizontalSpaceAroundIcon;