mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-08 06:37:26 -05:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import clsx from "clsx";
|
|
import styles from "./NotificationDot.module.css";
|
|
|
|
export function NotificationDot({ className }: { className?: string }) {
|
|
return (
|
|
<span className={clsx(styles.dotWrapper, className)}>
|
|
<span className={styles.pulse} />
|
|
<span className={styles.dot} />
|
|
</span>
|
|
);
|
|
}
|