UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.29 kB
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-squares-unite" 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.499 1.043 C 2.379 1.233,1.461 2.048,1.114 3.160 L 1.020 3.460 1.020 9.000 L 1.020 14.540 1.114 14.840 C 1.419 15.817,2.155 16.560,3.140 16.884 C 3.413 16.974,3.467 16.977,5.207 16.991 L 6.995 17.005 7.009 18.793 C 7.023 20.533,7.026 20.587,7.116 20.860 C 7.440 21.845,8.183 22.581,9.160 22.886 L 9.460 22.980 15.000 22.980 L 20.540 22.980 20.840 22.886 C 21.827 22.578,22.578 21.827,22.886 20.840 L 22.980 20.540 22.980 15.000 L 22.980 9.460 22.886 9.160 C 22.581 8.181,21.827 7.423,20.861 7.123 C 20.543 7.024,20.523 7.023,18.773 7.009 L 17.005 6.995 16.991 5.207 C 16.977 3.467,16.974 3.413,16.884 3.140 C 16.562 2.164,15.822 1.425,14.861 1.121 L 14.540 1.020 9.120 1.014 C 6.139 1.011,3.609 1.024,3.499 1.043 M14.310 3.061 C 14.452 3.103,14.571 3.178,14.697 3.303 C 14.996 3.602,15.000 3.636,15.000 5.579 C 15.000 7.404,15.010 7.505,15.225 7.930 C 15.361 8.199,15.801 8.639,16.070 8.775 C 16.495 8.990,16.596 9.000,18.421 9.000 C 20.364 9.000,20.398 9.004,20.697 9.303 C 21.020 9.627,21.000 9.243,21.000 15.001 C 21.000 19.212,20.990 20.139,20.945 20.290 C 20.872 20.533,20.707 20.740,20.484 20.872 L 20.300 20.980 15.000 20.980 L 9.700 20.980 9.516 20.872 C 9.415 20.813,9.284 20.700,9.225 20.623 C 9.004 20.334,9.000 20.293,8.999 18.465 C 8.999 16.650,8.983 16.482,8.784 16.087 C 8.649 15.822,8.344 15.494,8.063 15.312 C 7.618 15.024,7.634 15.026,5.560 15.002 L 3.700 14.980 3.516 14.872 C 3.293 14.740,3.128 14.533,3.055 14.290 C 3.010 14.139,3.000 13.212,3.000 9.001 C 3.000 3.242,2.979 3.627,3.304 3.303 C 3.621 2.985,3.234 3.006,8.983 3.003 C 13.458 3.000,14.131 3.008,14.310 3.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SquaresUniteIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const SquaresUnite = SquaresUniteIcon;