UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.51 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-square-pen" 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="M19.380 1.041 C 18.886 1.118,18.411 1.322,18.000 1.636 C 17.666 1.891,8.491 11.080,8.329 11.323 C 8.261 11.423,8.152 11.613,8.085 11.744 C 7.925 12.059,7.040 15.064,7.011 15.391 C 6.932 16.287,7.700 17.061,8.597 16.988 C 8.932 16.961,11.914 16.086,12.263 15.913 C 12.401 15.844,12.628 15.702,12.767 15.597 C 13.167 15.295,22.318 6.104,22.502 5.820 C 23.041 4.988,23.146 3.902,22.777 2.974 C 22.427 2.093,21.629 1.375,20.719 1.122 C 20.372 1.026,19.732 0.987,19.380 1.041 M4.499 2.043 C 3.383 2.230,2.461 3.048,2.114 4.160 L 2.020 4.460 2.020 12.000 L 2.020 19.540 2.114 19.840 C 2.422 20.827,3.173 21.578,4.160 21.886 L 4.460 21.980 12.000 21.980 L 19.540 21.980 19.840 21.886 C 20.827 21.578,21.578 20.827,21.886 19.840 L 21.980 19.540 21.980 15.620 L 21.980 11.700 21.871 11.514 C 21.479 10.848,20.521 10.848,20.129 11.514 L 20.020 11.700 20.000 15.480 C 19.985 18.383,19.968 19.286,19.930 19.373 C 19.842 19.572,19.672 19.761,19.484 19.872 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.415 19.813,4.284 19.700,4.225 19.623 C 3.986 19.309,4.000 19.795,4.000 12.022 C 4.000 4.006,3.975 4.631,4.303 4.303 C 4.621 3.985,4.414 4.000,8.537 3.998 C 11.476 3.997,12.209 3.986,12.330 3.943 C 12.551 3.864,12.744 3.702,12.869 3.489 C 12.964 3.328,12.980 3.256,12.980 3.000 C 12.980 2.746,12.963 2.672,12.872 2.516 C 12.813 2.415,12.698 2.282,12.618 2.221 C 12.320 1.994,12.426 2.000,8.404 2.005 C 6.367 2.007,4.609 2.025,4.499 2.043 M20.388 3.143 C 20.770 3.328,20.976 3.678,20.975 4.140 C 20.975 4.364,20.954 4.460,20.870 4.620 C 20.791 4.771,19.636 5.948,16.133 9.448 C 13.412 12.166,11.450 14.096,11.380 14.123 C 11.202 14.193,9.267 14.760,9.253 14.747 C 9.236 14.729,9.790 12.843,9.867 12.660 C 9.953 12.455,19.093 3.280,19.340 3.151 C 19.428 3.105,19.554 3.053,19.620 3.035 C 19.813 2.985,20.164 3.034,20.388 3.143 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SquarePenIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const SquarePen = SquarePenIcon;