katoikia-app/web-ui/web-react/node_modules/primereact/skeleton/skeleton.d.ts

19 lines
445 B
TypeScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
import * as React from 'react';
type SkeletonShapeType = 'rectangle' | 'circle';
type SkeletonAnimationType = 'wave' | 'none';
export interface SkeletonProps {
shape?: SkeletonShapeType;
size?: string;
width?: string;
height?: string;
borderRadius?: string;
animation?: SkeletonAnimationType;
style?: object;
className?: string;
}
export declare class Skeleton extends React.Component<SkeletonProps, any> { }