@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.63 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-volume-x" 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="M9.908 3.044 C 9.447 3.152,9.396 3.196,7.449 5.136 L 5.597 6.980 4.089 7.002 C 2.406 7.027,2.370 7.032,1.937 7.312 C 1.656 7.494,1.351 7.822,1.216 8.088 C 0.997 8.519,1.000 8.472,1.000 12.000 C 1.000 15.547,0.996 15.478,1.225 15.930 C 1.361 16.199,1.801 16.639,2.070 16.775 C 2.484 16.985,2.623 17.000,4.111 17.000 C 5.041 17.000,5.514 17.014,5.573 17.044 C 5.621 17.069,6.470 17.895,7.460 18.879 C 8.522 19.936,9.334 20.711,9.440 20.771 C 10.445 21.340,11.722 20.774,11.961 19.653 C 11.988 19.524,11.998 16.951,11.991 11.880 L 11.980 4.300 11.836 4.000 C 11.483 3.266,10.672 2.864,9.908 3.044 M10.000 12.009 L 10.000 18.579 8.470 17.053 C 6.860 15.448,6.655 15.275,6.163 15.111 C 5.915 15.029,5.815 15.023,4.450 15.009 L 3.000 14.995 3.000 11.997 L 3.000 9.000 4.354 9.000 C 5.571 9.000,5.738 8.992,6.016 8.921 C 6.630 8.764,6.673 8.729,8.400 7.012 C 9.269 6.148,9.985 5.441,9.990 5.441 C 9.995 5.440,10.000 8.396,10.000 12.009 M15.670 8.061 C 15.448 8.142,15.250 8.309,15.128 8.516 C 15.036 8.672,15.020 8.745,15.021 9.000 C 15.021 9.213,15.043 9.341,15.095 9.440 C 15.136 9.517,15.711 10.125,16.374 10.790 L 17.578 12.000 16.374 13.210 C 15.711 13.876,15.138 14.481,15.101 14.555 C 14.872 15.009,15.056 15.601,15.508 15.867 C 15.673 15.964,15.742 15.980,16.000 15.979 C 16.213 15.979,16.341 15.957,16.440 15.905 C 16.517 15.864,17.125 15.289,17.790 14.626 L 19.000 13.422 20.210 14.626 C 20.876 15.289,21.481 15.862,21.555 15.899 C 22.009 16.128,22.601 15.944,22.867 15.492 C 22.964 15.327,22.980 15.258,22.979 15.000 C 22.979 14.787,22.957 14.659,22.905 14.560 C 22.864 14.483,22.289 13.876,21.626 13.210 L 20.422 12.000 21.626 10.790 C 22.289 10.125,22.864 9.517,22.905 9.440 C 22.957 9.341,22.979 9.213,22.979 9.000 C 22.980 8.745,22.964 8.672,22.872 8.516 C 22.618 8.084,22.137 7.905,21.657 8.066 C 21.484 8.124,21.312 8.279,20.230 9.354 L 19.000 10.576 17.770 9.354 C 16.688 8.279,16.516 8.124,16.343 8.066 C 16.108 7.987,15.875 7.985,15.670 8.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const VolumeXIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const VolumeX = VolumeXIcon;