@bothub-chat/ui
Version:
Bothub UI Components
14 lines (13 loc) • 390 B
TypeScript
import React from 'react';
import { SkeletonVariant } from './types';
export interface SkeletonProps {
className?: string;
variant?: SkeletonVariant;
width?: number | string;
height?: number | string;
fullWidth?: boolean;
colors?: [string, string?];
opacity?: [number, number?];
}
export declare const Skeleton: React.FC<SkeletonProps>;
export * from './types';