interface MenusLookAndFeel {
    color: string;
    hoverOrFocus: {
        backgroundColor: string;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • MenusLookAndFeel

Properties

Properties

color: string
hoverOrFocus: {
    backgroundColor: string;
} & {
    [key: string]: unknown;
}