Interface Link

Represents a basic hyperlink with a label and URL.

interface Link {
    href: string;
    label: string;
}

Hierarchy (View Summary)

Properties

Properties

href: string

The URL that the link will navigate to when clicked.

label: string

The text that will be displayed for the link.