@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.22 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-brackets" 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="M5.477 2.073 C 4.806 2.249,4.238 2.823,4.060 3.508 C 3.969 3.854,3.969 20.146,4.060 20.492 C 4.153 20.852,4.310 21.118,4.596 21.404 C 4.882 21.690,5.148 21.847,5.508 21.940 C 5.822 22.022,8.102 22.024,8.330 21.943 C 8.551 21.864,8.744 21.702,8.869 21.489 C 8.964 21.328,8.980 21.256,8.980 21.000 C 8.980 20.746,8.963 20.672,8.872 20.516 C 8.813 20.415,8.698 20.282,8.618 20.221 C 8.356 20.022,8.203 20.000,7.054 20.000 L 6.000 20.000 6.000 12.000 L 6.000 4.000 7.090 3.998 C 8.262 3.996,8.357 3.983,8.619 3.783 C 8.696 3.725,8.808 3.592,8.869 3.489 C 8.964 3.328,8.980 3.256,8.980 3.000 C 8.980 2.746,8.963 2.672,8.872 2.516 C 8.740 2.293,8.533 2.128,8.290 2.055 C 7.998 1.967,5.829 1.981,5.477 2.073 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.643 3.983,15.738 3.996,16.910 3.998 L 18.000 4.000 18.000 12.000 L 18.000 20.000 16.946 20.000 C 15.797 20.000,15.644 20.022,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.192 21.592,15.304 21.725,15.381 21.783 C 15.646 21.986,15.728 21.996,17.042 21.998 C 18.366 22.000,18.522 21.982,18.930 21.775 C 19.196 21.640,19.638 21.200,19.771 20.937 C 20.015 20.457,20.000 21.028,19.999 12.014 C 19.999 3.065,20.010 3.534,19.781 3.083 C 19.646 2.816,19.297 2.449,19.017 2.281 C 18.603 2.031,18.412 2.005,17.060 2.005 C 16.191 2.005,15.814 2.020,15.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BracketsIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Brackets = BracketsIcon;