import type { Topic } from '../../graphql/types.gen' import { Icon } from '../_shared/Icon' import './FloorHeader.scss' import { useLocalize } from '../../context/localize' export default (props: { topic: Topic; color: string }) => { const { t } = useLocalize() return ( <>

{props.topic.title}

{t('All posts')}
) }