import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors, { ColorValue } from 'src/styles/colors' interface Props { size?: number notificationMark?: ColorValue } const NotificationBellIcon = ({ size = 24, notificationMark }: Props) => ( {notificationMark && ( )} ) export default NotificationBellIcon