in components/RuiAlert/src/RuiAlert.ts [91:107]
public render(): TemplateResult {
return this._isDismissed ? html`` : html`
<div class="icon">
<slot name="icon"> </slot>
</div>
<div class="content">
<slot> </slot>
</div>
${this.dismissible ? html`
<div class = "dismissible">
<button @click="${this._onDismiss}" >
<slot name="dismissible"> </slot>
</button>
</div>
` : html``}
`
};