Image
Last updated: 2.0.0 (21/01/2024)
Usage
import { Image } from "@valence-ui/core";
function MyComponent() {
return (
<Image
src="https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=720&q=80"
alt="A random image"
/>
)
}Override width & height
import { Image } from "@valence-ui/core";
function MyComponent() {
return (
<Image
src="https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=720&q=80"
alt="A random image"
width={200}
height={300}
/>
)
}Override fit & position
Custom placeholder
Props
Property
Type
Description
GenericImageProps
Property
Type
Description
Last updated