import { Avatar, AvatarProps } from "@chakra-ui/react"; import React from "react"; interface Props { twitterName: string; isSmall?: boolean; } const TwitterAvatar: React.FC = ({ twitterName, isSmall, ...props }) => ( ); export default TwitterAvatar;