I am using Image
from semantic-ui-react to display an image. Code snippet is like below:
<Image
src={image}
fluid style={{filter: 'brightness(30%)'}}
as='a'
href={image}
target="_blank" //open image in new tab
/>
image
is the link to "https://firebasestorage.googleapis.com/v0/b/freebies-df71a.appspot.com/o/m0PSbkGseb6gK85HWRuE%2Fphotos%2FIMG_9743.JPG?alt=media&token=7cef5382-5308-44da-b47d-e8780d279f22"
If you check the link, you would see an image with vertical display. However, when it's displayed in <Image>
, the direction become horizontal. Check the screenshot below:
Can someone kindly help me to position the image to the correct direction? Thanks!