Image

The RhImage component facilitates developers in presenting images with a multitude of configuration options.

Usage

Once installed, you can import the RhImage component into your React application:

copy
import {RhImage} from "@rhythm-ui/react"

Then, you can use the RhImage component in your JSX code:

copy
<RhImage
  src="https://i.ibb.co/5KQvSTJ/Pngtree-not-found-5408094.png"
  alt="Image-description"
  width="100px"
  height="100px"
  contain={true}
  caption="Caption is Here"
  aspectRatio="auto"
/>

Image Props

srcstringhttps://bit.ly/3mYW2vQSet image url
altstringSet alt text for image
heightstringSets height of image
widthstringSets width of image
containbooleanSet object-fit to contain
captionstringShow caption below the image
aspectRatiostringSet aspect ratio of image
classNamestringAdditional CSS classes to apply to the RhImage.