Update KnowledgeIcon size in MessageSource.tsx

This commit is contained in:
n4ze3m 2024-04-06 20:27:17 +05:30
parent d6d2eae5ef
commit 8e429e2379

View File

@ -19,8 +19,8 @@ export const MessageSource: React.FC<Props> = ({ source, onSourceClick }) => {
onClick={() => { onClick={() => {
onSourceClick && onSourceClick(source) onSourceClick && onSourceClick(source)
}} }}
className="inline-flex gap-2 cursor-pointer transition-shadow duration-300 ease-in-out hover:shadow-lg items-center rounded-md bg-gray-100 p-1 text-xs text-gray-800 border border-gray-300 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-100 opacity-80 hover:opacity-100"> className="inline-flex gap-2 cursor-pointer transition-shadow duration-300 ease-in-out hover:shadow-lg items-center rounded-md bg-gray-100 p-1 text-xs text-gray-800 border border-gray-300 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-100 opacity-80 hover:opacity-100">
<KnowledgeIcon type={source.type} className="h-4 w-5" /> <KnowledgeIcon type={source.type} className="h-3 w-3" />
<span className="text-xs">{source.name}</span> <span className="text-xs">{source.name}</span>
</button> </button>
) )