import * as React from 'react'; import useUser from '@contexts/user'; import Svg, {SvgProps, Path, Circle} from 'react-native-svg'; const SvgComponent = (props: SvgProps) => { const {user} = useUser(); return ( {user?.hasNewNotifications && ( )} ); }; export default SvgComponent;