Components
Loading preview...
Here is Buttons Components
@ShadcnStudio
npx shadcn@latest add https://21st.dev/r/ShadcnStudio/buttonsimport { BellIcon } from 'lucide-react'
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
const ButtonNotificationsBadgeDemo = () => {
return (
<Button variant='outline' className='flex items-center gap-2 relative'>
<BellIcon size={15}/>
Notifications
<Badge variant='destructive' className='absolute -top-2.5 -right-2.5 h-5 min-w-5 rounded-full px-1 tabular-nums'>
8
</Badge>
</Button>
)
}
export default ButtonNotificationsBadgeDemo