react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 443 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgSoundModuleFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M21 18v3h-2v-3h-2v-3h6v3h-2zM5 18v3H3v-3H1v-3h6v3H5zm6-12V3h2v3h2v3H9V6h2zm0 5h2v10h-2V11zm-8 2V3h2v10H3zm16 0V3h2v10h-2z" />
</Svg>
);
}
export default SvgSoundModuleFill;