16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
import { BellIcon } from '@heroicons/react/outline';
|
|
import React from 'react';
|
|
|
|
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;
|