File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
browser-extension/tests/playground Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
1111 MessageSquareDashed ,
1212 Monitor ,
1313 Search ,
14+ Settings ,
1415 TextSelect ,
1516 Trash2 ,
1617} from 'lucide-react'
@@ -49,6 +50,7 @@ const statBadge = cva(
4950 link : 'bg-blue-50 text-blue-700' ,
5051 open : 'bg-cyan-50 text-cyan-700' ,
5152 sent : 'bg-green-50 text-green-700' ,
53+ settings : 'bg-gray-50 text-gray-700' ,
5254 text : 'bg-gray-50 text-gray-700' ,
5355 time : 'bg-gray-50 text-gray-700' ,
5456 trashed : 'bg-gray-50 text-yellow-700' ,
@@ -67,6 +69,7 @@ const typeIcons = {
6769 link : Link ,
6870 open : Monitor ,
6971 sent : MailCheck ,
72+ settings : Settings ,
7073 text : TextSelect ,
7174 time : Clock ,
7275 trashed : Trash2 ,
@@ -558,6 +561,18 @@ export const ClaudePrototype = () => {
558561 } ,
559562 ] }
560563 />
564+ < button
565+ type = 'button'
566+ className = { twMerge (
567+ statBadge ( {
568+ clickable : true ,
569+ type : 'settings' ,
570+ } ) ,
571+ 'border' ,
572+ ) }
573+ >
574+ < Settings className = 'w-3 h-3' />
575+ </ button >
561576 </ div >
562577 </ div >
563578 </ div >
You can’t perform that action at this time.
0 commit comments