react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 387 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPlayList2Fill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M22 18v2H2v-2h20zM2 3.5l8 5-8 5v-10zM22 11v2H12v-2h10zm0-7v2H12V4h10z" />
</Svg>
);
}
export default SvgPlayList2Fill;