Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
226 Bytes
"use client"
import { Box, useRecipe } from "@chakra-ui/react"
export const SystemWithUseRecipe = () => {
const button = useRecipe({ key: "button" })
return <Box css={button({ size: "md" })}>Styled like a button</Box>
}