mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-09-11 11:25:35 -04:00
32 lines
668 B
TypeScript
32 lines
668 B
TypeScript
import { cn } from "@/lib/utils";
|
|
|
|
// https://magicui.design/docs/components/marquee
|
|
const Marquee = ({
|
|
repeat = 3,
|
|
className,
|
|
children,
|
|
...rest
|
|
}: React.ComponentProps<"div"> & {
|
|
reverse?: boolean;
|
|
pauseOnHover?: boolean;
|
|
repeat?: number;
|
|
}) => (
|
|
<div
|
|
className={cn("group flex flex-row [gap:var(--gap)] overflow-hidden [--gap:2rem]", className)}
|
|
{...rest}
|
|
>
|
|
{Array(repeat)
|
|
.fill(0)
|
|
.map((_, i) => (
|
|
<div
|
|
key={i}
|
|
className="flex shrink-0 flex-row justify-around [gap:var(--gap)] motion-safe:animate-marquee"
|
|
>
|
|
{children}
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
|
|
export { Marquee };
|