import { useTheme } from 'hooks'; import React from 'react'; import Svg, { Path, SvgProps } from 'react-native-svg'; export const BellFill: React.FC = (props) => { const { theme } = useTheme(); return ( ); };