import Image from 'next/image' import { API_URL } from '../../../../tools/api' 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
) }