You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
overseerr/src/components/Layout/Notifications/index.tsx

15 lines
372 B

import { BellIcon } from '@heroicons/react/24/outline';
const Notifications = () => {
return (
<button
className="rounded-full p-1 text-gray-400 hover:bg-gray-500 hover:text-white focus:text-white focus:outline-none focus:ring"
aria-label="Notifications"
>
<BellIcon className="h-6 w-6" />
</button>
);
};
export default Notifications;