gomiemeru Hi
It will require a bit customization, you can try this:
#triggerButton {
position: relative;
width: 35px; /* Adjust size as needed */
height: 35px;
background-color: purple; /* Adjust color as needed */
display: flex;
align-items: center;
justify-content: center;
transform: rotate(45deg); /* Rotates the square to create a diamond */
}
#triggerButton .c-button__text {
transform: rotate(-45deg); /* Rotates the icon back to its normal position */
}
#triggerButton .toggle-bars {
font-size: 24px; /* Adjust size as needed */
color: white; /* Adjust icon color as needed */
}