react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 408 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgVoiceprintFill(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 7h2v10H5V7zm-4 3h2v4H1v-4zm8-8h2v18H9V2zm4 2h2v18h-2V4zm4 3h2v10h-2V7zm4 3h2v4h-2v-4z" />
</Svg>
);
}
export default SvgVoiceprintFill;