ZoomContent.tsx15 lines · main
| 1 | const ZoomContent = ({ img }: { img: React.ReactElement | null }) => { |
| 2 | return ( |
| 3 | <figure |
| 4 | className=" |
| 5 | [&_img]:rounded-md |
| 6 | [&_img]:border |
| 7 | [&_img]:bg-default |
| 8 | " |
| 9 | > |
| 10 | {img} |
| 11 | </figure> |
| 12 | ) |
| 13 | } |
| 14 | |
| 15 | export default ZoomContent |