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.
14 lines • 402 B
TypeScript
type StackListItem = {
icon: React.ReactNode;
title: string;
subtitle: string;
date: string;
};
type StackListProps = {
items: StackListItem[];
initialVisible?: number;
className?: string;
};
export default function StackList({ items, initialVisible, className, }: StackListProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=stack-list.d.ts.map