zextra
Version:
zikojs extra components
18 lines (13 loc) • 540 B
TypeScript
import { UIElement } from "ziko/dom";
export declare class UISkeleton extends UIElement {}
export type SkeletonVariants = | 'text'
| 'circular'
| 'rectangular'
| 'rounded'
export type SkeletonAnimations = | 'pulse'
| 'wave'
| false
export declare const Skeleton: (props : {
variant?: SkeletonVariants,
animation? : SkeletonAnimations
}) => UISkeleton;