interface LinkRowProfileProps {
    description?: string;
    height?: "small" | "medium" | "large";
    href: string;
    icon: IconType;
    label: string;
    onNavigate: ((url) => void);
}

Properties

description?: string

Short description text that appears below the label

height?: "small" | "medium" | "large"

The height of the row

href: string

The href value for the row

icon: IconType

The icon that is displayed on the left side

label: string

The label for the row

onNavigate: ((url) => void)

The onNavigate callback

Type declaration

    • (url): void
    • The onNavigate callback

      Parameters

      • url: string

      Returns void

Generated using TypeDoc