@@ -141,7 +141,7 @@ export default function ChatWidget() {
141141 { ! open && (
142142 < button
143143 onClick = { ( ) => setOpen ( true ) }
144- className = "w-16 h-16 rounded-full bg-cyan-900 flex items-center justify-center text-white shadow-lg"
144+ className = "w-16 cursor-pointer h-16 rounded-full bg-cyan-900 flex items-center justify-center text-white shadow-lg"
145145 aria-label = "Open chat"
146146 >
147147 < MessageCircle size = { 32 } />
@@ -153,11 +153,11 @@ export default function ChatWidget() {
153153 animate = { { opacity : 1 , y : 0 } }
154154 className = "w-[420px] h-[540px] bg-cyan-900 shadow-lg rounded-2xl flex flex-col relative"
155155 >
156- < div className = "p-4 border-b border-white flex justify-between items-center" >
156+ < div className = "p-4 border-b border-white flex justify-between items-center" >
157157 < span className = "font-semibold text-lg text-white" > Chat</ span >
158158 < button
159159 onClick = { ( ) => setOpen ( false ) }
160- className = "text-white hover:text-gray-300"
160+ className = "text-white cursor-pointer hover:text-gray-300"
161161 aria-label = "Close chat"
162162 >
163163 ✕
@@ -206,13 +206,13 @@ export default function ChatWidget() {
206206 < div className = "flex justify-center mt-2 space-x-3" >
207207 < button
208208 onClick = { handleReloadChat }
209- className = "flex items-center space-x-1 text-sm text-white/80 hover:text-white transition-colors"
209+ className = "flex cursor-pointer items-center space-x-1 text-sm text-white/80 hover:text-white transition-colors"
210210 >
211211 < RotateCcw size = { 16 } />
212212 </ button >
213213 < button
214214 onClick = { handleDownloadChat }
215- className = "flex items-center space-x-1 text-sm text-white/80 hover:text-white transition-colors"
215+ className = "flex cursor-pointer items-center space-x-1 text-sm text-white/80 hover:text-white transition-colors"
216216 >
217217 < Download size = { 16 } />
218218 </ button >
@@ -239,7 +239,7 @@ export default function ChatWidget() {
239239 className = "absolute right-4 top-1/2 -translate-y-1/2 p-2 rounded-full text-white hover:bg-blue-600 transition-colors disabled:opacity-50"
240240 aria-label = "Send message"
241241 >
242- < Send size = { 22 } className = "transform rotate-35" />
242+ < Send size = { 22 } className = "transform cursor-pointer rotate-35" />
243243 </ button >
244244 </ div >
245245 </ div >
0 commit comments