interface RouteDescriptionProps {
    baseKey: string;
    customAttribute?: {
        attribute: string;
        value: string | number;
    };
    disableDividers?: boolean;
    disableMarginX?: boolean;
    items: ReactElement<any, string | JSXElementConstructor<any>>[];
    lang?: InputLanguage;
}

Properties

baseKey: string
customAttribute?: {
    attribute: string;
    value: string | number;
}

Used for tests. Clickable and requested subcomponents will be suffixed with "-[ComponentName]".

disableDividers?: boolean
disableMarginX?: boolean

Disable horizontal margin

items: ReactElement<any, string | JSXElementConstructor<any>>[]

List of RoutDescriptionItem

lang?: InputLanguage

Language used for internal translations.