UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

25 lines 1.09 kB
import { CSProps } from '@workday/canvas-kit-styling'; export interface LoadingDotsProps extends CSProps { /** * Applies backgroundColor to loading dots, intended for use with the circle variant design on grey/dark/image-based backgrounds. * @default `system.color.bg.alt.strong` */ loadingDotColor?: string; /** * Duration of the loading animation in milliseconds. * @default `40ms` */ animationDurationMs?: string; } export declare const loadingDotsStencil: import("@workday/canvas-kit-styling").Stencil<import("@workday/canvas-kit-styling").StencilModifierConfig<{}, { animationDurationMs: string; loadingDotColor: "--cnvs-sys-color-bg-alt-strong"; }, never>, {}, { animationDurationMs: string; loadingDotColor: "--cnvs-sys-color-bg-alt-strong"; }, never, never>; /** * A simple component that displays three horizontal dots, to be used when some data is loading. */ export declare const LoadingDots: import("@workday/canvas-kit-react/common").ElementComponent<"div", LoadingDotsProps>; //# sourceMappingURL=LoadingDots.d.ts.map