webapp/src/components/Topic/FloorHeader.tsx

19 lines
498 B
TypeScript
Raw Normal View History

2022-09-09 11:53:35 +00:00
import type { Topic } from '../../graphql/types.gen'
2022-09-22 09:37:49 +00:00
import { Icon } from '../Nav/Icon'
2022-09-09 11:53:35 +00:00
import './FloorHeader.scss'
import { t } from '../../utils/intl'
export default (props: { topic: Topic; color: string }) => {
return (
<>
<h3 class="col-sm-6">{props.topic.title}</h3>
<div class="col-sm-6 all-materials">
<a href={`/topic/${props.topic.slug}`}>
{t('All posts')}
<Icon name={`arrow-right-${props.color}`} />
</a>
</div>
</>
)
}