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

6 lines
183 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 (
<hr className="h-px border-t-0 bg-linear-to-r bg-transparent from-transparent via-foreground to-transparent opacity-80" />
2025-08-28 18:27:07 +02:00
);
2025-08-04 17:45:44 +02:00
}