interface JobActivityProps {
    buttons: {
        href: string;
        icon: IconType;
        onNavigate: ((url) => void);
        text: string;
    }[];
    title: string;
}

Properties

Properties

buttons: {
    href: string;
    icon: IconType;
    onNavigate: ((url) => void);
    text: string;
}[]

list of buttons

Type declaration

  • href: string
  • icon: IconType
  • onNavigate: ((url) => void)
      • (url): void
      • Parameters

        • url: string

        Returns void

  • text: string
title: string

Biggest text on the page

Generated using TypeDoc