custom imageStyle
Answered
Gharial posted this in #help-forum
GharialOP
This is in docs.
const imageStyle = {
borderRadius: '50%',
border: '1px solid #fff',
}
export default function LogoImage() {
return (
<Image
src={Logo}
style={imageStyle}
/>
)
}
Is it possible to add z-index to const imageStyle ?
const imageStyle = {
borderRadius: '50%',
border: '1px solid #fff',
}
export default function LogoImage() {
return (
<Image
src={Logo}
style={imageStyle}
/>
)
}
Is it possible to add z-index to const imageStyle ?