snort/src/Element/UnreadCount.tsx
2023-01-20 11:30:04 +00:00

12 lines
221 B
TypeScript

import "./UnreadCount.css"
const UnreadCount = ({ unread }: { unread: number }) => {
return (
<span className={`pill ${unread > 0 ? 'unread' : ''}`}>
{unread}
</span>
)
}
export default UnreadCount