/* eslint-disable @typescript-eslint/ban-ts-comment */ // @ts-nocheck import { useIcon } from 'hooks'; import React from 'react'; import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg'; import { IconProps } from './types'; export const NotificationOff: React.FC = ({ colorVariant = 'body', ...props }) => { const { getIconColor } = useIcon(); return ( ); };