interfaceTabLinkProps { /** Destination URL; opened in a background tab (or a new window outside the extension). */ href:string; /** Link content. */ children:ReactNode; /** Optional history entry recorded when the link is clicked. */ history?:HistoryEntry; /** Additional props forwarded to the underlying MUI `Link`. */ [key:string]:unknown; }
Props for TabLink. A plain anchor plus optional search-history recording; extra props are spread onto the underlying MUI
Link.Example
Source