Interface declaring the common properties of the loaders

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

Hierarchy (View Summary)

Properties

Properties

color?: string

Color of the dots - CSS compatible color

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.