import React from "react";
import { HTMLChakraProps, Img } from "@chakra-ui/react";
import { PicassoUtils } from "@repo/utils";
const { getPicassoImgSrc } = PicassoUtils;
interface IAddressIcon extends HTMLChakraProps<"img"> {
address: string;
}
export const AddressIcon: React.FC = ({ address, ...props }) => {
return ;
};
interface IPicasso extends HTMLChakraProps<"img"> {
address: string;
}
const Picasso: React.FC = ({ address, ...props }) => {
return (
);
};