UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 459 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgRecordMailLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M14.257 15a5.5 5.5 0 114.243 2h-13a5.5 5.5 0 114.243-2h4.514zM5.5 15a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm13 0a3.5 3.5 0 100-7 3.5 3.5 0 000 7z" /> </Svg> ); } export default SvgRecordMailLine;