interface GroupSettingsRowProps {
    height?: "small" | "medium" | "large";
    icon: IconType;
    label: string;
    onNavigate: ((url) => void);
    route: string;
    value?: string;
}

Properties

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

The height of the row

icon: IconType

The icon for the row

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

route: string

The route for the row

value?: string

The value for the row

Generated using TypeDoc