import type { JSX, SVGProps } from 'react' type TNotificationIcon = { showBadge?: boolean } & JSX.IntrinsicAttributes & SVGProps export const NotificationIcon = ({ showBadge = false, ...properties }: TNotificationIcon) => { return ( {showBadge && ( )} ) }