@ant-design/x
Version:
Craft AI-driven interfaces effortlessly
13 lines (12 loc) • 414 B
TypeScript
import React from 'react';
import type { SourcesItem, SourcesProps } from '../Sources';
export interface CarouselCardProps {
activeKey?: SourcesProps['activeKey'];
prefixCls: string;
items?: SourcesProps['items'];
className?: string;
style?: React.CSSProperties;
onClick?: (item: SourcesItem) => void;
}
declare const CarouselCard: React.FC<CarouselCardProps>;
export default CarouselCard;