chore: update Codex channel (#5461)
This commit is contained in:
+12
-3
@@ -36,13 +36,22 @@ export function ProviderBadge({
|
||||
const icon = iconKey ? getLobeIcon(iconKey, iconSize) : null
|
||||
|
||||
return (
|
||||
<div data-slot='provider-badge' className={cn('flex items-center gap-1.5', className)}>
|
||||
{icon}
|
||||
<div
|
||||
data-slot='provider-badge'
|
||||
className={cn(
|
||||
'flex min-w-0 max-w-full items-center gap-1.5',
|
||||
className
|
||||
)}
|
||||
>
|
||||
{icon && <span className='flex shrink-0 items-center'>{icon}</span>}
|
||||
<StatusBadge
|
||||
label={label}
|
||||
autoColor={label}
|
||||
size='sm'
|
||||
className={!icon ? 'pl-0' : undefined}
|
||||
className={cn(
|
||||
'min-w-0 shrink overflow-hidden',
|
||||
!icon && 'pl-0'
|
||||
)}
|
||||
{...badgeProps}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user