Hi Jonathan,
You need to add custom styles to achieve this. Check out this forum post to see an example on how to add custom styles.
Below is what I quickly tried on the browser to remove icon and add ‘Feedback’ text.
.sprintrFeedback__sidebar_button--feedback::before {
content: 'Feedback';
}
.sprintrFeedback__sidebar_button--feedback {
background-image: unset;
}
.sprintrFeedback__sidebar_button {
width: 100%;
}
.sprintrFeedback__sidebar {
vertical-align: bottom;
width: 75px;
transform: rotate(90deg);
border-top-left-radius: 0;
border-top-right-radius: 0;
}
Hope this helps!