Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
469 Bytes
/* eslint-disable jsx-a11y/alt-text */
import { Box } from "@chakra-ui/react"
import Image, { type ImageProps } from "next/image"
export const Img = (props: ImageProps) => {
const { height, ...rest } = props
return (
<Box
height={height}
css={{
position: "relative",
marginTop: "1.7em",
marginBottom: "1.7em",
borderRadius: "lg",
boxShadow: "inset",
}}
>
<Image {...rest} />
</Box>
)
}