carbon-react
Version:
A library of reusable React components for easily building user interfaces.
16 lines (15 loc) • 662 B
TypeScript
export interface StyledLoaderSquareProps {
/** Size of the loader. */
size?: "small" | "medium" | "large";
/** Applies white color. */
isInsideButton?: boolean;
/** Applies slate color. Available only when isInsideButton is true. */
isActive?: boolean;
/** The background color of each loader square */
backgroundColor?: string;
}
export declare const StyledLoaderPlaceholder: import("styled-components").StyledComponent<"div", any, {}, never>;
declare const StyledLoaderSquare: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledLoaderSquareProps, "theme">;
export default StyledLoaderSquare;