ILinkButtonWidgetProps
Definition
interface ILinkButtonWidgetProps {
/**
* link url
*/
link: string,
/**
* target for link
* default is _self
*/
target?: "_self" | "_blank" | "_parent"
/**
* icon to show
*/
icon: string,
/**
* label for link
*/
label: string
}Usage
Last updated