blob: 0e0fc6fc4bfb3cf04881f775dc7198a37f71db28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import React from "react";
export function Marquee({ children, ...props }) {
return (
<div className="overflow-x-hidden">
<div className="sr-only">
These are the logos of some but not all of our users.
</div>
<div className="relative">
<div className="inline-block wrapper">{children}</div>
</div>
</div>
);
}
|