UNPKG

skeleton-elements

Version:

Skeleton elements (aka UI Skeletons, Skeleton Screens, Ghost Elements) - UI for improved perceived performance

26 lines (22 loc) 443 B
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue'; declare const SkeletonText: DefineComponent< { /** * HTML element tag * * @default 'span' */ tag: { type: StringConstructor }; /** * Animation effect */ effect: { type: StringConstructor }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin >; export default SkeletonText;