Interface declaring the common properties of the loaders

interface Dots2Props {
    color?: string;
    dotRadius?: string | number;
    height?: string | number;
    width?: string | number;
}

Hierarchy (View Summary)

Properties

color?: string

Color of the dots - CSS compatible color

dotRadius?: string | number

Radius of the dots in pixels or a string with a length unit.

height?: string | number

height of the loader element in pixels or a string with a length unit.

width?: string | number

width of the loader element in pixels or a string with a length unit.