interface EnrichmentAnchorOptions {
    attrs?: Record<string, string>;
    classes?: string[];
    dataset?: Record<string, string>;
    icon?: string;
    name?: string;
}

Properties

attrs?: Record<string, string>

Attributes to set on the anchor.

classes?: string[]

Classes to add to the anchor.

dataset?: Record<string, string>

Data- attributes to set on the anchor.

icon?: string

A font-awesome icon class to use as the icon.

name?: string

The anchor's content.