import Image from 'next/image' import { GuildWithDefaultChannelId } from '../../../models/Guild' import { IconLink } from '../../design/IconLink' export interface GuildProps { guild: GuildWithDefaultChannelId selected?: boolean } export const Guild: React.FC = (props) => { const { guild, selected } = props return (
logo
) }