@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 341 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgVoiceprintFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M5 7h2v10H5V7Zm-4 3h2v4H1v-4Zm8-8h2v18H9V2Zm4 2h2v18h-2V4Zm4 3h2v10h-2V7Zm4 3h2v4h-2v-4Z" />
</Svg>
);
export default SvgVoiceprintFill;