mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
12 lines
351 B
JavaScript
12 lines
351 B
JavaScript
/**
|
|
* 红点
|
|
*/
|
|
export default function Badge() {
|
|
return <>
|
|
{/* 红点 */}
|
|
<span class="absolute right-1 top-1 flex h-2 w-2">
|
|
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-red-400 opacity-75"></span>
|
|
<span class="relative inline-flex rounded-full h-2 w-2 bg-red-500"></span>
|
|
</span></>
|
|
}
|