mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
11 lines
262 B
TypeScript
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>
|
|
);
|
|
}
|