Type Alias SpinnerProps

SpinnerProps: Omit<CircularProgressProps, "size"> & {
    fillContainer?: boolean;
    size?: {
        x?: number;
        y?: number;
    };
}

Type declaration

  • OptionalfillContainer?: boolean

    If true, the spinner is wrapped in flexbox and will fill the container

  • Optionalsize?: {
        x?: number;
        y?: number;
    }

    The size of the spinner (in pixels)

    • Optionalx?: number
    • Optionaly?: number