react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 403 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPlayList2Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M22 18v2H2v-2zM2 3.5l8 5-8 5zM22 11v2H12v-2zM4 7.109v2.783L6.226 8.5zM22 4v2H12V4z" />
</Svg>
);
export default SvgPlayList2Line;