"use client" import { type BoxProps, Image, Square, useAvatar } from "@chakra-ui/react" import { LuImage } from "react-icons/lu" interface Props { image: string name: string size?: BoxProps["boxSize"] } export const SponsorImage = (props: Props) => { const { image, name, size = "10" } = props const avatar = useAvatar() return ( {name} ) }