Useful when you want to link somewhere external (e.g. your own admin tool or payment provider)
A link button has the following properties:
linkButtonLabel
linkButtonUrl
For example:
import { uiComponent } from '@team-plain/typescript-sdk'; uiComponent.linkButton({ label: 'Open in Admin Portal', url: 'https://example.com', });
{ "componentLinkButton": { "linkButtonLabel": "Open in Admin Portal", "linkButtonUrl": "https://example.com" } }
Was this page helpful?