UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

15 lines (14 loc) 634 B
import { SystemProps } from "../system/system.js"; import { VuiComponent } from "../core/vui.js"; import "../core/index.js"; import { SkeletonProps } from "./skeleton.types.js"; import "../index.js"; //#region src/skeleton/skeleton.d.ts declare const SkeletonBase: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SystemProps, never>; /** * Displays one or more animated skeleton elements to signify loading content. */ declare const Skeleton: VuiComponent<'div', SkeletonProps>; //#endregion export { Skeleton, Skeleton as default, SkeletonBase }; //# sourceMappingURL=skeleton.d.ts.map