Alert.html 467 Bytes
<div ng-class="'ant-alert'+(type?' ant-alert-'+type:'')+(!showIcon?' ant-alert-no-icon':'')+(description?' ant-alert-with-description':'')">
    <antd-icon ng-if="showIcon" type="{{state.icons[type]}}" class="ant-alert-icon"></antd-icon>
    <div class="ant-alert-content">
        <div class="ant-alert-message">{{message}}</div>
        <div ng-if="description" class="ant-alert-description"><antd-slot content="{{description}}"></antd-slot></div>
    </div>
</div>