UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

17 lines (16 loc) 642 B
import { KendoComponent } from '../_types/component'; export declare const SKELETON_CLASSNAME = "k-skeleton"; declare const SKELETON_VARIANTS: readonly ["circle", "text", "rect"]; export type KendoSkeletonOptions = { variant?: (typeof SKELETON_VARIANTS)[number] | null; }; export type KendoSkeletonProps = KendoSkeletonOptions & { /** * @deprecated Use `variant` instead */ shape?: 'circle' | 'text' | 'rect'; animation?: false | 'wave' | 'pulse'; style?: React.CSSProperties; }; export declare const Skeleton: KendoComponent<KendoSkeletonProps & React.HTMLAttributes<HTMLSpanElement>>; export default Skeleton;