* fix(deps): update dependency @heroicons/react to v2 * fix: update imports and fix icon name changes for heroicons * fix: also update MiniStatusBadge to use new check icon * fix: update last place with old import Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sct <ryan@sct.dev>
15 lines
372 B
TypeScript
15 lines
372 B
TypeScript
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;
|