Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
375 Bytes
"use client"
import { Box, useSlotRecipe } from "@chakra-ui/react"
export const SystemWithUseSlotRecipe = () => {
const alert = useSlotRecipe({ key: "alert" })
const styles = alert({ variant: "solid" })
return (
<Box css={styles.root}>
<Box css={styles.title}>Alert Title</Box>
<Box css={styles.description}>Alert Description</Box>
</Box>
)
}