UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.57 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-layers-2" 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="M11.394 1.060 C 11.248 1.090,11.023 1.156,10.894 1.208 C 10.765 1.261,8.681 2.437,6.262 3.822 C 1.493 6.553,1.508 6.543,1.247 7.032 C 0.812 7.850,0.962 8.821,1.619 9.431 C 1.775 9.576,2.106 9.798,2.522 10.037 C 9.319 13.938,10.788 14.766,11.093 14.867 C 11.388 14.965,11.476 14.976,12.000 14.976 C 12.524 14.976,12.612 14.965,12.907 14.867 C 13.212 14.766,14.681 13.938,21.478 10.037 C 21.894 9.798,22.225 9.576,22.381 9.431 C 23.038 8.821,23.188 7.850,22.753 7.032 C 22.492 6.543,22.507 6.553,17.738 3.822 C 15.319 2.437,13.236 1.261,13.108 1.209 C 12.616 1.010,11.943 0.951,11.394 1.060 M12.445 3.110 C 12.795 3.281,20.960 7.971,20.960 8.002 C 20.960 8.034,12.561 12.851,12.351 12.938 C 12.161 13.017,11.839 13.017,11.649 12.938 C 11.436 12.849,3.040 8.035,3.040 8.002 C 3.040 7.971,11.200 3.283,11.555 3.110 C 11.717 3.031,11.841 3.000,12.000 3.000 C 12.159 3.000,12.283 3.031,12.445 3.110 M3.780 13.315 C 3.629 13.354,3.622 13.358,2.662 13.894 C 1.765 14.396,1.453 14.646,1.247 15.032 C 0.812 15.850,0.962 16.821,1.619 17.431 C 1.775 17.576,2.106 17.798,2.522 18.037 C 9.319 21.938,10.788 22.766,11.093 22.867 C 11.388 22.965,11.476 22.976,12.000 22.976 C 12.524 22.976,12.612 22.965,12.907 22.867 C 13.212 22.766,14.681 21.938,21.478 18.037 C 21.894 17.798,22.225 17.576,22.381 17.431 C 23.038 16.821,23.188 15.850,22.753 15.032 C 22.547 14.647,22.235 14.396,21.338 13.894 C 20.244 13.282,20.298 13.306,20.000 13.303 C 19.110 13.295,18.666 14.355,19.298 14.977 C 19.394 15.072,19.777 15.315,20.211 15.557 C 20.623 15.787,20.960 15.987,20.960 16.002 C 20.960 16.035,12.563 20.849,12.351 20.938 C 12.269 20.972,12.111 21.000,12.000 21.000 C 11.889 21.000,11.731 20.972,11.649 20.938 C 11.437 20.849,3.040 16.035,3.040 16.002 C 3.040 15.987,3.377 15.787,3.789 15.557 C 4.223 15.315,4.606 15.072,4.702 14.977 C 5.067 14.618,5.093 14.061,4.764 13.645 C 4.557 13.383,4.103 13.231,3.780 13.315 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const Layers2Icon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Layers2 = Layers2Icon;