@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.06 kB
JavaScript
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-list-music" 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.022,16.107 7.022,16.330 6.943 C 16.551 6.864,16.744 6.702,16.869 6.489 C 16.964 6.328,16.980 6.256,16.980 6.000 C 16.980 5.746,16.963 5.672,16.872 5.516 C 16.740 5.293,16.533 5.128,16.290 5.055 C 16.028 4.976,2.947 4.978,2.695 5.057 M20.695 5.057 C 20.466 5.129,20.256 5.299,20.128 5.516 L 20.020 5.700 20.009 9.010 C 20.003 10.831,19.992 12.320,19.984 12.320 C 19.976 12.320,19.850 12.275,19.703 12.220 C 18.880 11.910,17.877 11.947,17.062 12.316 C 16.123 12.742,15.445 13.527,15.133 14.548 C 15.038 14.863,15.026 14.963,15.026 15.500 C 15.026 16.037,15.038 16.137,15.133 16.452 C 15.581 17.920,16.808 18.902,18.300 18.987 C 19.322 19.046,20.223 18.698,20.960 17.960 C 21.523 17.398,21.844 16.771,21.961 16.008 C 21.988 15.832,21.998 14.016,21.991 10.720 L 21.980 5.700 21.872 5.516 C 21.628 5.101,21.150 4.915,20.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.892 13.022,12.108 13.022,12.330 12.943 C 12.551 12.864,12.744 12.702,12.869 12.489 C 12.964 12.328,12.980 12.256,12.980 12.000 C 12.980 11.746,12.963 11.672,12.872 11.516 C 12.740 11.293,12.533 11.128,12.290 11.055 C 12.029 10.976,2.946 10.978,2.695 11.057 M19.119 14.143 C 19.417 14.279,19.727 14.592,19.865 14.896 C 19.960 15.105,19.976 15.192,19.976 15.500 C 19.976 15.808,19.960 15.895,19.865 16.104 C 19.725 16.413,19.417 16.720,19.100 16.868 C 18.893 16.965,18.810 16.980,18.500 16.980 C 18.190 16.980,18.107 16.965,17.900 16.868 C 17.583 16.720,17.275 16.413,17.135 16.104 C 17.040 15.896,17.024 15.808,17.024 15.500 C 17.023 15.191,17.039 15.106,17.134 14.900 C 17.327 14.478,17.749 14.129,18.174 14.039 C 18.441 13.982,18.870 14.030,19.119 14.143 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.892 19.022,12.108 19.022,12.330 18.943 C 12.551 18.864,12.744 18.702,12.869 18.489 C 12.964 18.328,12.980 18.256,12.980 18.000 C 12.980 17.746,12.963 17.672,12.872 17.516 C 12.740 17.293,12.533 17.128,12.290 17.055 C 12.029 16.976,2.946 16.978,2.695 17.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ListMusicIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ListMusic = ListMusicIcon;