UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 397 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgPlayListAddLine = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M2 18h10v2H2zm0-7h20v2H2zm0-7h20v2H2zm16 14v-3h2v3h3v2h-3v3h-2v-3h-3v-2z" /> </Svg> ); export default SvgPlayListAddLine;