I wanted to hide the image element at the left of SIGN IN button in the image, it's an image display before login. How can I do it in AngularDart?
app_component.html
<div header class="custom-header">
<img class="icon" [src]="fbService.user?.photoURL">
<div id="user-name">{{fbService.user?.displayName}}</div>
<div id="email">{{fbService.user?.email}}</div>
</div>
app_component.css
.icon {
width: 40px;
height: 40px;
margin-right: 16px;
}