How can I remove the cart trolley icon from the Brooklyn theme?

hi I want to remove the cart icon trolley so I only have the text.

I’m using the brooklyn theme

this is the preview of my store:

https://6xlh0wi5vdrnxdng-41528656033.shopifypreview.com

thanks!

@Gerardlopez ,
Add this code at the bottom of theme → assets → theme.scss.liquid

.icon.icon-cart {
	display: none !important;
}

Please add below code in bottom of assets/timber.scss.css file.

.icon-cart:before {
content: ’ ';

}
Thank you.