import { Avatar, Box, MetaButton, Text, VStack } from '@metafam/ds'; import { GuildFragmentFragment } from 'graphql/autogen/types'; import React from 'react'; import { ProfileSection } from '../ProfileSection'; type Props = { guild: GuildFragmentFragment }; export const GuildHero: React.FC = ({ guild }) => ( {guild.logo ? ( ) : null} {guild.name} {`${guild.type} GUILD`} {guild.description} {guild.join_button_url ? ( Join ) : null} );