Example link button

A link button has the following properties:

  • linkButtonLabel: the text of the button
  • linkButtonUrl: the URL the button should open in a new tab

For example:

import { uiComponent } from '@team-plain/typescript-sdk';

uiComponent.linkButton({
  label: 'Open in Admin Portal',
  url: 'https://example.com',
});