17 lines
316 B
TypeScript
17 lines
316 B
TypeScript
"use client"
|
|
|
|
import { MessageCircle } from "lucide-react"
|
|
|
|
interface PostCommentCountProps {
|
|
count: number
|
|
}
|
|
|
|
export function PostCommentCount({ count }: PostCommentCountProps) {
|
|
return (
|
|
<span className="flex items-center gap-1">
|
|
<MessageCircle className="h-4 w-4" />
|
|
{count}
|
|
</span>
|
|
)
|
|
}
|