Skip to content

Commit 443daf4

Browse files
committed
Update the style of the suggestions
1 parent 3c937c3 commit 443daf4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

webview-ui/src/components/chat/FollowUpSuggest.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useCallback } from "react"
2-
import { ArrowRight, Edit } from "lucide-react"
2+
import { Edit } from "lucide-react"
33

44
import { Button } from "@/components/ui"
55

@@ -26,16 +26,15 @@ export const FollowUpSuggest = ({ suggestions = [], onSuggestionClick, ts = 1 }:
2626
}
2727

2828
return (
29-
<div className="flex mb-2 flex-col h-full border rounded-xs">
29+
<div className="flex mb-2 flex-col h-full gap-2">
3030
{suggestions.map((suggestion) => (
3131
<div key={`${suggestion}-${ts}`} className="w-full relative group">
3232
<Button
33-
variant="ghost"
33+
variant="outline"
3434
className="text-left whitespace-normal break-words w-full h-auto py-3 justify-start pr-8"
3535
onClick={(event) => handleSuggestionClick(suggestion, event)}
3636
aria-label={suggestion}>
3737
<div className="flex flex-row items-center gap-2">
38-
<ArrowRight />
3938
<div>{suggestion}</div>
4039
</div>
4140
</Button>

0 commit comments

Comments
 (0)