@chatui/core
Version:
The React library for Chatbot UI
10 lines (9 loc) • 332 B
TypeScript
import React from 'react';
export type CardSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
export interface CardProps {
className?: string;
size?: CardSize;
fluid?: boolean | 'order';
children?: React.ReactNode;
}
export declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;