UNPKG

@dfinity/gix-components

Version:
9 lines (8 loc) 279 B
/// <reference types="svelte" /> interface Props { animated?: boolean; tagName?: "span" | "p" | "h1" | "h2" | "h3"; } declare const SkeletonText: import("svelte").Component<Props, {}, "">; type SkeletonText = ReturnType<typeof SkeletonText>; export default SkeletonText;