/** * @author mkunze * @deprecated since v5. * Please use this only for rendering content in ngFor. See {@link TerraDataTableComponent} */ export interface TerraButtonInterface { icon?: string; iconColor?: string; caption?: string; tooltipText?: string; clickFunction: (event?: Event) => void; tooltipPlacement?: string; isActive?: boolean; isDisabled?: boolean; isHidden?: boolean; isDivider?: boolean; isHighlighted?: boolean; isSmall?: boolean; isLarge?: boolean; isFlagged?: boolean; }