import template from "./Alert.html"; import style from "antd/lib/alert/style/index.css"; class Alert { props = { type: String, message: String, showIcon: Boolean, description: String, }; useModules = ["esNgAntd"]; template = template; constructor() { esNgAntd.createStyle("ant-alert", style); } }