infoalloggi-monorepo/apps/infoalloggi/src/components/blurry_divider.tsx

6 lines
223 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
export default function BlurryDivider() {
2025-08-28 18:27:07 +02:00
return (
2025-10-10 16:18:43 +02:00
<hr className="h-px border-t-0 bg-gradient-to-r bg-transparent from-transparent via-neutral-500 to-transparent opacity-80 dark:via-neutral-50 dark:opacity-100" />
2025-08-28 18:27:07 +02:00
);
2025-08-04 17:45:44 +02:00
}