react-kanban-kit
Version:
A flexible and customizable Kanban board component for React applications, built with TypeScript and modern drag-and-drop functionality powered by Atlassian's pragmatic-drag-and-drop.
11 lines (9 loc) • 327 B
TypeScript
import { default as React } from 'react';
export type SkeletonAnimationType = "shimmer" | "pulse" | "wave";
interface CardSkeletonProps {
className?: string;
style?: React.CSSProperties;
animationType?: SkeletonAnimationType;
}
declare const CardSkeleton: React.FC<CardSkeletonProps>;
export default CardSkeleton;