From cb8adac08f0387b3527bf393862b46cbec6cb02a Mon Sep 17 00:00:00 2001 From: bluemoehre Date: Wed, 1 Jul 2026 00:17:54 +0200 Subject: [PATCH] add Badge component --- src/components/AppBar.tsx | 9 +++++++-- src/components/Badge.tsx | 24 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 src/components/Badge.tsx diff --git a/src/components/AppBar.tsx b/src/components/AppBar.tsx index ee0af5c..4e8ecd7 100644 --- a/src/components/AppBar.tsx +++ b/src/components/AppBar.tsx @@ -1,5 +1,6 @@ import { BellRingIcon, ListChecksIcon, SettingsIcon } from 'lucide-react' +import { Badge } from '@/components/Badge' import { Button } from '@/components/ui/button' interface AppBarProps { @@ -15,11 +16,15 @@ export function AppBar({ onSettingsClick, onJobsClick, onNotificationsClick }: A MAIA.2