feat: add file icons

This commit is contained in:
Henry Li
2026-02-02 10:02:31 +08:00
parent 02400e0e8c
commit f1db301d77
5 changed files with 23 additions and 6 deletions

View File

@@ -167,7 +167,10 @@ export type ChainOfThoughtSearchResultsProps = ComponentProps<"div">;
export const ChainOfThoughtSearchResults = memo(
({ className, ...props }: ChainOfThoughtSearchResultsProps) => (
<div
className={cn("flex flex-wrap items-center gap-2", className)}
className={cn(
"flex flex-wrap items-center gap-2 overflow-x-hidden",
className,
)}
{...props}
/>
),