sendou.ink/app/components/NotificationDot.tsx
Kalle fef1ffc955
Design refresh + a bunch of stuff (#2864)
Co-authored-by: hfcRed <hfcred@gmx.net>
2026-03-19 17:51:42 +02:00

11 lines
262 B
TypeScript

import clsx from "clsx";
import styles from "./NotificationDot.module.css";
export function NotificationDot({ className }: { className?: string }) {
return (
<span className={clsx(styles.dot, className)}>
<span className={styles.pulse} />
</span>
);
}