Interface IconOverlayBackground

A shape that can be optionally rendered behind the overlay icon. Can be used to further refine colors.

interface IconOverlayBackground {
    color?: string;
    shape: "circle" | "square";
}

Properties

Properties

color?: string

The color of the background shape.

shape: "circle" | "square"

Either circle or square.