mui-simple
Version:
Override mui-v7 components to simplify usage
11 lines • 398 B
TypeScript
import React from 'react';
import type { PropsWithChildren } from 'react';
interface SkeletonProps {
loading?: boolean;
animation?: 'pulse' | 'wave' | false;
variant?: 'circular' | 'rectangular' | 'rounded' | 'text' | undefined;
[key: string]: any;
}
declare const Skeleton: React.FC<PropsWithChildren<SkeletonProps>>;
export default Skeleton;
//# sourceMappingURL=Skeleton.d.ts.map