"use client" import { Box, useSlotRecipe } from "@chakra-ui/react" export const SystemWithUseSlotRecipe = () => { const alert = useSlotRecipe({ key: "alert" }) const styles = alert({ variant: "solid" }) return ( Alert Title Alert Description ) }