@vchatcloud/react-ui-kit
Version:
VChatCloud UI Kit for react integration
9 lines (8 loc) • 346 B
TypeScript
import { HTMLAttributes } from 'react';
interface SkeletonProps {
readonly width?: number;
readonly height?: number;
readonly aspectRatio?: number;
}
declare const Skeleton: ({ width, height, aspectRatio, ...props }: HTMLAttributes<HTMLDivElement> & SkeletonProps) => import("react/jsx-runtime").JSX.Element;
export default Skeleton;