Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
424 Bytes
import { Alert, Button } from "@chakra-ui/react"
export const AlertWithButtons = () => {
return (
<Alert.Root>
<Alert.Indicator />
<Alert.Content>
<Alert.Title>This is the alert title</Alert.Title>
<Alert.Description>This is the alert description</Alert.Description>
</Alert.Content>
<Button size="sm" alignSelf="center">
Action
</Button>
</Alert.Root>
)
}