UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.68 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-wrap-text" 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="M2.695 5.057 C 2.466 5.129,2.256 5.299,2.128 5.516 C 2.037 5.672,2.020 5.746,2.020 6.000 C 2.020 6.256,2.036 6.328,2.131 6.489 C 2.256 6.702,2.449 6.864,2.670 6.943 C 2.893 7.023,21.107 7.023,21.330 6.943 C 21.551 6.864,21.744 6.702,21.869 6.489 C 21.964 6.328,21.980 6.256,21.980 6.000 C 21.980 5.746,21.963 5.672,21.872 5.516 C 21.740 5.293,21.533 5.128,21.290 5.055 C 21.027 4.976,2.947 4.978,2.695 5.057 M2.695 11.057 C 2.466 11.129,2.256 11.299,2.128 11.516 C 2.037 11.672,2.020 11.746,2.020 12.000 C 2.020 12.256,2.036 12.328,2.131 12.489 C 2.256 12.702,2.449 12.864,2.670 12.943 C 2.793 12.987,4.200 12.997,10.540 13.001 C 19.152 13.005,18.524 12.984,19.017 13.281 C 19.902 13.814,20.243 14.955,19.793 15.880 C 19.638 16.198,19.227 16.625,18.930 16.775 C 18.542 16.971,18.341 17.000,17.346 17.000 L 16.428 17.000 16.629 16.788 C 16.924 16.476,16.978 16.354,16.979 16.000 C 16.980 15.745,16.964 15.672,16.872 15.516 C 16.618 15.084,16.136 14.905,15.657 15.066 C 15.485 15.124,15.317 15.273,14.325 16.256 C 13.078 17.491,13.001 17.593,13.001 18.000 C 13.001 18.405,13.080 18.510,14.306 19.726 C 14.919 20.334,15.483 20.864,15.560 20.905 C 15.659 20.957,15.787 20.979,16.000 20.979 C 16.258 20.980,16.327 20.964,16.492 20.867 C 16.842 20.662,17.029 20.295,16.988 19.895 C 16.961 19.632,16.879 19.477,16.629 19.212 L 16.428 19.000 17.398 19.000 C 18.208 19.000,18.432 18.987,18.757 18.921 C 20.117 18.643,21.193 17.755,21.704 16.488 C 22.090 15.530,22.090 14.469,21.705 13.516 C 21.172 12.197,20.001 11.269,18.605 11.058 C 18.064 10.977,2.955 10.976,2.695 11.057 M2.695 17.057 C 2.466 17.129,2.256 17.299,2.128 17.516 C 2.037 17.672,2.020 17.746,2.020 18.000 C 2.020 18.256,2.036 18.328,2.131 18.489 C 2.256 18.702,2.449 18.864,2.670 18.943 C 2.891 19.022,10.109 19.022,10.330 18.943 C 10.551 18.864,10.744 18.702,10.869 18.489 C 10.964 18.328,10.980 18.256,10.980 18.000 C 10.980 17.746,10.963 17.672,10.872 17.516 C 10.740 17.293,10.533 17.128,10.290 17.055 C 10.030 16.977,2.945 16.979,2.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const WrapTextIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const WrapText = WrapTextIcon;