reablocks
Version:
Component library for React
15 lines (14 loc) • 405 B
TypeScript
export interface DotsLoaderTheme {
/** CSS class applied to the root loader container. */
base: string;
/** CSS class applied to each individual dot. */
dot: string;
/** Class names for each loader size. */
sizes: {
small: string;
medium: string;
large: string;
[]: string;
};
}
export declare const dotsLoaderTheme: DotsLoaderTheme;