feat: update styling in ModelSelector and provider-icons for improved UI consistency

This commit is contained in:
Anish Sarkar 2026-02-22 03:58:04 +05:30
parent 7a77ce4d2f
commit 87e4859a39
2 changed files with 24 additions and 24 deletions

View file

@ -43,7 +43,7 @@ export function getProviderIcon(
{ isAutoMode, className = "size-4" }: { isAutoMode?: boolean; className?: string } = {}
) {
if (isAutoMode || provider?.toUpperCase() === "AUTO") {
return <Shuffle className={cn(className, "text-violet-800")} />;
return <Shuffle className={cn(className, "text-muted-foreground")} />;
}
switch (provider?.toUpperCase()) {