Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
627 Bytes
"use client"
import { chakra } from "@chakra-ui/react"
const Alert = chakra("div", {
base: {
lineHeight: "1",
fontSize: "sm",
fontWeight: "semibold",
rounded: "md",
padding: "4",
fontFamily: "Inter",
color: "white",
},
variants: {
status: {
default: { bg: "gray" },
error: { bg: "red" },
success: { bg: "green" },
warning: { bg: "orange" },
},
caps: {
true: {
textTransform: "uppercase",
},
},
},
})
export const SystemAlertRecipe = () => {
return (
<Alert status="success" caps>
This is an alert
</Alert>
)
}