react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 452 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgVoiceRecognitionLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M5 15v4h4v2H3v-6h2zm16 0v6h-6v-2h4v-4h2zm-8-9v12h-2V6h2zM9 9v6H7V9h2zm8 0v6h-2V9h2zM9 3v2H5v4H3V3h6zm12 0v6h-2V5h-4V3h6z" />
</Svg>
);
}
export default SvgVoiceRecognitionLine;