interface LegendSimpleItem {
    caption?: ReactNode;
    circle?: {
        color: string;
        isFilled?: boolean;
    };
    key: string;
    label: string;
}

Properties

caption?: ReactNode
circle?: {
    color: string;
    isFilled?: boolean;
}
key: string
label: string