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.
17 lines (16 loc) • 415 B
TypeScript
import React from "react";
export interface ScrollStackCard {
title: string;
subtitle?: string;
badge?: string;
backgroundImage?: string;
content?: React.ReactNode;
}
interface ScrollStackProps {
cards: ScrollStackCard[];
cardHeight?: number;
scrollPerCard?: number;
className?: string;
}
export declare const ScrollStack: React.FC<ScrollStackProps>;
export default ScrollStack;