UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 423 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgMenuAddFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M18 15l-.001 3H21v2h-3.001L18 23h-2l-.001-3H13v-2h2.999L16 15h2zm-7 3v2H3v-2h8zm10-7v2H3v-2h18zm0-7v2H3V4h18z" /> </Svg> ); } export default SvgMenuAddFill;