remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 402 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"
{...props}
>
<Path d="M21 18v3h-2v-3h-2v-3h6v3zM5 18v3H3v-3H1v-3h6v3zm6-12V3h2v3h2v3H9V6zm0 5h2v10h-2zm-8 2V3h2v10zm16 0V3h2v10z" />
</Svg>
);
export default SvgSoundModuleFill;