import { Avatar, For, HStack, Span, useSlotRecipe } from "@chakra-ui/react" import { colorPalettes } from "compositions/lib/color-palettes" import { PlaygroundTable } from "compositions/lib/playground-table" export const AvatarVariantTable = () => { const recipe = useSlotRecipe({ key: "avatar" }) return ( {(v) => {v}} {(c) => ( {c} {(v) => ( )} )} ) }