Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
381 Bytes
import { Box, BoxProps } from "@chakra-ui/react"
export function Blob(props: BoxProps) {
return (
<Box
width="1000px"
height="800px"
pos="absolute"
opacity="0.05"
pointerEvents="none"
flexShrink={0}
bgImage="radial-gradient(#5EEAD4 0%, rgba(94, 234, 212, 0) 60%)"
hideBelow="md"
zIndex="0"
{...props}
/>
)
}