Files
requestarr/src/components/Layout/Notifications/index.tsx
2022-08-18 17:05:58 +09:00

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;