Interface StatusCountInternal

Status count information for each Kenmei status.

export interface StatusCount {
status: KenmeiStatus;
count: number;
icon: React.ReactNode;
label: string;
color: string;
bgColor: string;
}
interface StatusCount {
    status: KenmeiStatus;
    count: number;
    icon: ReactNode;
    label: string;
    color: string;
    bgColor: string;
}

Properties

status: KenmeiStatus

The KenmeiStatus value.

count: number

The number of manga entries with this status.

icon: ReactNode

The icon to display for this status.

label: string

The label for this status.

color: string

The text color class for this status.

bgColor: string

The background color class for this status.