"use client" import { Alert, For, Span, useSlotRecipe } from "@chakra-ui/react" import { colorPalettes } from "compositions/lib/color-palettes" import { PlaygroundTable } from "compositions/lib/playground-table" export const AlertVariantTable = () => { const recipe = useSlotRecipe({ key: "alert" }) return ( {(v) => {v}} {(c) => ( {c} {(v) => ( )} )} ) } const AlertDemo = (props: Alert.RootProps) => { return ( Alert Title Chakra UI v3 is the greatest! Check it out. ) }