我正在处理需要用谷歌材料图标替换对话框面板的关闭图标的要求。
找到下面的截图,我想用谷歌素材图标替换关闭图标。
以下代码生成带有一些自定义消息的对话框。
confirm(data, dt): boolean {
let confirmation = false;
let message
if (data.SelfOwner == true) {
message = 'Delete this Dashboard?'
}
this.confirmationService.confirm({
message: message,
header: 'Confirm delete'
)}
添加谷歌素材图标的示例如下。
<span class="material-icons">
delete
</span>
但是对话框会自动使用它的默认 css 和 html 组件呈现。
有人可以指导我如何用谷歌材料图标覆盖对话框的关闭图标。
提前致谢。