Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
interface DateSeparatorProps {
|
|
label: string
|
|
}
|
|
|
|
const DateSeparator = ({ label }: DateSeparatorProps) => (
|
|
<div className="flex justify-center py-3">
|
|
<span className="rounded-full border border-white/80 bg-white/65 px-3.5 py-1 text-xs font-medium text-secondary-20 shadow-sm backdrop-blur-sm">
|
|
{label}
|
|
</span>
|
|
</div>
|
|
)
|
|
|
|
export default DateSeparator
|