2022-10-19 14:26:49 +00:00
|
|
|
import style from './CardTopic.module.scss'
|
|
|
|
|
|
|
|
interface CardTopicProps {
|
|
|
|
title: string
|
|
|
|
slug: string
|
|
|
|
isFloorImportant?: boolean
|
|
|
|
}
|
|
|
|
|
2022-12-01 18:45:35 +00:00
|
|
|
export const CardTopic = (props: CardTopicProps) => {
|
2022-10-19 14:26:49 +00:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
class={style.shoutTopic}
|
|
|
|
classList={{
|
|
|
|
[style.shoutTopicFloorImportant]: props.isFloorImportant
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<a href={`/topic/${props.slug}`}>{props.title}</a>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|