Files
Arkie-Library-Frontend/src/components/messageStream/DaySeparator.tsx
2026-05-25 05:25:57 +08:00

10 lines
294 B
TypeScript

export function DaySeparator({ label }: { label: string }) {
return (
<div className="sticky top-[58px] z-[5] flex justify-center py-2">
<span className="rounded-full bg-ark-panel/80 px-3 py-1 text-xs text-neutral-300 backdrop-blur">
{label}
</span>
</div>
);
}