mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-02 10:41:04 +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 (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<img {...props} onClick={openModal} />
|
<img
|
||||||
|
{...props}
|
||||||
|
onClick={openModal}
|
||||||
|
className={clsx("cursor-pointer", props.className)}
|
||||||
|
/>
|
||||||
{modalOpen && (
|
{modalOpen && (
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
|
|
Loading…
Add table
Reference in a new issue