Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Alert } from "@chakra-ui/react"
export const AlertWithDescription = () => {
return (
<Alert.Root status="error">
<Alert.Indicator />
<Alert.Content>
<Alert.Title>Invalid Fields</Alert.Title>
<Alert.Description>
Your form has some errors. Please fix them and try again.
</Alert.Description>
</Alert.Content>
</Alert.Root>
)
}