@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.46 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-voicemail" 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.400 7.044 C 3.761 7.229,2.261 8.290,1.526 9.785 C 1.333 10.177,1.187 10.599,1.093 11.040 C 0.992 11.511,0.992 12.489,1.093 12.960 C 1.526 14.984,3.016 16.474,5.040 16.907 C 5.361 16.976,5.750 16.980,12.000 16.980 C 18.250 16.980,18.639 16.976,18.960 16.907 C 20.488 16.580,21.748 15.630,22.433 14.288 C 22.838 13.494,22.980 12.899,22.980 12.000 C 22.980 11.101,22.838 10.506,22.433 9.713 C 21.794 8.461,20.610 7.514,19.240 7.161 C 18.307 6.920,17.125 6.983,16.248 7.320 C 15.565 7.582,14.886 8.035,14.384 8.563 C 13.723 9.257,13.301 10.067,13.093 11.040 C 12.992 11.511,12.992 12.489,13.093 12.960 C 13.231 13.604,13.504 14.266,13.838 14.766 L 13.994 15.000 11.997 15.000 L 9.999 15.000 10.155 14.770 C 10.361 14.466,10.605 13.971,10.732 13.600 C 10.922 13.043,10.980 12.670,10.980 12.000 C 10.980 11.101,10.838 10.506,10.433 9.713 C 9.794 8.461,8.604 7.510,7.240 7.162 C 6.669 7.016,6.019 6.974,5.400 7.044 M6.861 9.129 C 7.804 9.405,8.584 10.183,8.875 11.139 C 8.958 11.412,8.973 11.542,8.973 12.000 C 8.973 12.458,8.958 12.588,8.875 12.861 C 8.582 13.822,7.819 14.581,6.840 14.886 C 6.406 15.021,5.594 15.021,5.160 14.886 C 4.181 14.581,3.418 13.822,3.125 12.861 C 3.042 12.588,3.027 12.458,3.027 12.000 C 3.027 11.542,3.042 11.412,3.125 11.139 C 3.456 10.054,4.371 9.245,5.499 9.040 C 5.832 8.980,6.500 9.023,6.861 9.129 M18.861 9.129 C 19.804 9.405,20.584 10.183,20.875 11.139 C 20.958 11.412,20.973 11.542,20.973 12.000 C 20.973 12.458,20.958 12.588,20.875 12.861 C 20.582 13.822,19.819 14.581,18.840 14.886 C 18.406 15.021,17.594 15.021,17.160 14.886 C 16.181 14.581,15.418 13.822,15.125 12.861 C 15.042 12.588,15.027 12.458,15.027 12.000 C 15.027 11.542,15.042 11.412,15.125 11.139 C 15.456 10.054,16.371 9.245,17.499 9.040 C 17.832 8.980,18.500 9.023,18.861 9.129 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`;
export const VoicemailIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Voicemail = VoicemailIcon;