UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.02 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-book-user" 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.873 1.063 C 5.147 1.194,4.470 1.562,3.958 2.105 C 3.562 2.524,3.318 2.949,3.130 3.548 L 3.020 3.900 3.020 12.000 L 3.020 20.100 3.130 20.452 C 3.511 21.666,4.334 22.489,5.548 22.870 L 5.900 22.980 12.560 22.991 C 17.107 22.998,19.284 22.988,19.422 22.960 C 19.938 22.852,20.538 22.398,20.771 21.937 C 21.015 21.455,21.000 22.127,20.999 12.014 C 20.999 1.974,21.011 2.536,20.781 2.083 C 20.646 1.816,20.297 1.449,20.017 1.281 C 19.527 0.986,20.016 1.004,12.720 1.006 C 7.322 1.007,6.126 1.017,5.873 1.063 M19.000 9.500 L 19.000 16.000 12.625 16.000 C 5.699 16.000,5.896 15.994,5.296 16.220 C 5.150 16.275,5.023 16.320,5.014 16.320 C 5.006 16.320,5.003 13.580,5.009 10.230 L 5.020 4.140 5.132 3.900 C 5.330 3.475,5.756 3.124,6.174 3.042 C 6.265 3.024,9.189 3.007,12.670 3.004 L 19.000 3.000 19.000 9.500 M11.499 5.040 C 10.363 5.246,9.460 6.049,9.114 7.160 C 8.979 7.594,8.979 8.407,9.114 8.839 C 9.220 9.177,9.362 9.478,9.509 9.673 C 9.563 9.746,9.602 9.809,9.594 9.814 C 9.457 9.898,9.083 10.257,8.914 10.467 C 8.477 11.009,8.220 11.555,8.079 12.242 C 7.959 12.826,7.980 13.241,8.144 13.508 C 8.539 14.150,9.458 14.154,9.851 13.515 C 9.943 13.366,9.972 13.258,10.001 12.955 C 10.047 12.473,10.122 12.230,10.314 11.937 C 10.810 11.181,11.661 10.848,12.523 11.073 C 13.047 11.210,13.552 11.629,13.797 12.129 C 13.911 12.362,13.945 12.522,14.021 13.165 C 14.051 13.412,14.236 13.694,14.465 13.839 C 14.938 14.139,15.558 13.992,15.856 13.508 C 16.019 13.244,16.041 12.825,15.924 12.256 C 15.781 11.562,15.521 11.007,15.086 10.467 C 14.917 10.257,14.543 9.898,14.406 9.814 C 14.398 9.809,14.437 9.746,14.491 9.673 C 14.638 9.478,14.780 9.177,14.886 8.839 C 15.021 8.407,15.021 7.594,14.886 7.160 C 14.581 6.179,13.810 5.407,12.861 5.129 C 12.500 5.023,11.832 4.980,11.499 5.040 M12.310 7.061 C 12.688 7.173,13.000 7.598,13.000 8.001 C 13.000 8.331,12.784 8.696,12.484 8.872 C 12.328 8.963,12.254 8.980,12.000 8.980 C 11.746 8.980,11.672 8.963,11.516 8.872 C 10.935 8.530,10.833 7.774,11.304 7.303 C 11.583 7.024,11.916 6.944,12.310 7.061 M19.000 19.500 L 19.000 21.001 12.570 20.990 L 6.140 20.980 5.900 20.868 C 5.583 20.720,5.275 20.413,5.135 20.104 C 5.040 19.896,5.024 19.808,5.024 19.500 C 5.023 19.191,5.039 19.106,5.134 18.900 C 5.328 18.477,5.755 18.124,6.174 18.042 C 6.265 18.024,9.189 18.007,12.670 18.004 L 19.000 18.000 19.000 19.500 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const BookUserIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const BookUser = BookUserIcon;