UNPKG

react-native-feather

Version:
9 lines (8 loc) 395 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgBell(props) { return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}> <Path d="M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0"/> </Svg>); } export default SvgBell;