react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 389 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEqualizer3Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M7 3v3H3v2h4v3h3V3zm5 5h9V6h-9zm5 5v3h4v2h-4v3h-3v-8zm-5 5H3v-2h9z" />
</Svg>
);
export default SvgEqualizer3Fill;