"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> | |
} | |
"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> | |
} | |