mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-02 18:50:24 +00:00
pointer cursor for images (#342)
This commit is contained in:
parent
55b1699f3e
commit
9c19442fed
1 changed files with 5 additions and 1 deletions
|
@ -30,7 +30,11 @@ function ZoomableImage(props: HTMLImageElementProps) {
|
|||
|
||||
return (
|
||||
<div>
|
||||
<img {...props} onClick={openModal} />
|
||||
<img
|
||||
{...props}
|
||||
onClick={openModal}
|
||||
className={clsx("cursor-pointer", props.className)}
|
||||
/>
|
||||
{modalOpen && (
|
||||
<div
|
||||
className={clsx(
|
||||
|
|
Loading…
Add table
Reference in a new issue