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