@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 395 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgVoiceRecognitionLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M4.998 15v4h4v2h-6v-6h2Zm16 0v6h-6v-2h4v-4h2Zm-8-9v12h-2V6h2Zm-4 3v6h-2V9h2Zm8 0v6h-2V9h2Zm-8-6v2h-4v4h-2V3h6Zm12 0v6h-2V5h-4V3h6Z" />
</Svg>
);
export default SvgVoiceRecognitionLine;