react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 431 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgSoundModuleFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M21 18v3h-2v-3h-2v-3h6v3zM5 18v3H3v-3H1v-3h6v3zm6-12V3h2v3h2v3H9V6zm0 5h2v10h-2zm-8 2V3h2v10zm16 0V3h2v10z" />
</Svg>
);
export default SvgSoundModuleFill;