UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

29 lines (28 loc) 1.06 kB
import React from "react"; export interface SlidingLogoMarqueeItem { id: string; content: React.ReactNode; href?: string; } export interface SlidingLogoMarqueeProps { items: SlidingLogoMarqueeItem[]; speed?: number; pauseOnHover?: boolean; enableBlur?: boolean; blurIntensity?: number; height?: string; width?: string; gap?: string; scale?: number; direction?: "horizontal" | "vertical"; autoPlay?: boolean; backgroundColor?: string; showGridBackground?: boolean; className?: string; onItemClick?: (item: SlidingLogoMarqueeItem) => void; enableSpillEffect?: boolean; animationSteps?: number; showControls?: boolean; } export declare function SlidingLogoMarquee({ items, speed, pauseOnHover, enableBlur, blurIntensity, height, width, gap, scale, direction, autoPlay, backgroundColor, showGridBackground, className, onItemClick, enableSpillEffect, animationSteps, showControls, }: SlidingLogoMarqueeProps): import("react/jsx-runtime").JSX.Element; export default SlidingLogoMarquee;