10 lines
294 B
TypeScript
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>
|
|
);
|
|
}
|