@kbfront/kb-ui
Version:
KB React UI Library
16 lines (15 loc) • 356 B
TypeScript
import { CSSProperties, FC } from "react";
import "./index.scss";
interface IProps {
type?: ESkeletonType;
width?: string | number;
height?: string | number;
style?: CSSProperties;
}
export declare enum ESkeletonType {
BOX = "box",
AVATAR = "avatar",
LINE = "line"
}
declare const Skeleton: FC<IProps>;
export default Skeleton;