import React from "react" import Button, { ButtonProps } from "../../fundamentals/button" import BellIcon from "../../fundamentals/icons/bell-icon" import BellNotiIcon from "../../fundamentals/icons/bell-noti-icon" type NotificationBellProps = ButtonProps & { hasNotifications?: boolean } const NotificationBell: React.FC = ({ hasNotifications = false, ...attributes }) => { return ( ) } export default NotificationBell