Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
protected render() {
const classes = {
[cssClasses.STACKED]: this.stacked,
};
let heading = html``;
if (this.heading) {
heading = html`
<h2 class="mdc-dialog__title">${this.heading}</h2>`;
}
const actionsClasses = {
'mdc-dialog__actions': !this.hideActions,
};
return html`