ZoomContent.tsx 263 B

123456789101112131415
  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. export default ZoomContent