UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 405 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgNotification3Line(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M20 17h2v2H2v-2h2v-7a8 8 0 1116 0v7zm-2 0v-7a6 6 0 10-12 0v7h12zm-9 4h6v2H9v-2z" /> </Svg> ); } export default SvgNotification3Line;