iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 637 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgMicrophoneMute(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15.25 8.5V8a3.25 3.25 0 00-6.5 0v3.18c0 .047 0 .092.004.139.024.378.2 2.212 1.277 2.478M18.25 12.75s-.25 4.5-6.25 4.5c-.342 0-.666-.015-.972-.042M5.75 12.75s.105 1.891 1.814 3.222M12 17.75v1.5M18.25 5.75l-12.5 12.5" })));
}
export default SvgMicrophoneMute;