@urami/react
v1.0.3
Published
Automatic image optimization component for React
Downloads
10
Maintainers
Readme
@urami/react
Optimized image component for React.
Usage
import Image from '@urami/react'
const Component = () => {
return (
<Image
src="https://demo.rayriffy.com/tom-scott.jpg"
width={801}
height={801}
alt="Tom Scott"
className="rounded-xl shadow-md"
/>
)
}
Props
| Name | Type | Default | Required | Description |
| --------- | -------- | -------------------------------------------------------------------------------------------------- | -------- | -------------------------------------------------------------------- |
| src
| string
| - | ✅ | Source of the image |
| width
| number
| - | ✅ | Width of the image |
| height
| number
| - | ❌ | Height of the image (Specify this will results in less layout shift) |
| quality
| number
| 75
| ❌ | Quality of the image |
| loader
| fn
| defaultLoader
| ❌ | Loader function, please refer to Loader |