@chatui/core
Version:
The React library for Chatbot UI
11 lines (10 loc) • 383 B
TypeScript
import React from 'react';
export interface SkeletonProps {
className?: string;
w?: React.CSSProperties['width'];
h?: React.CSSProperties['height'];
mb?: React.CSSProperties['marginBottom'];
style?: React.CSSProperties;
r?: 'sm' | 'md' | 'xl' | 'none';
}
export declare const Skeleton: ({ className, w, h, mb, r, style }: SkeletonProps) => React.JSX.Element;