Alert is a custom component to display informational messages
import {{'{'}}Alert{{'}'}} from 'fuel-ui/fuel-ui';
Alert is a custom element to programmatically display feedback messages typically for user actions
<alert [(displayed)]="showAlert" type="success" [closeButton]="false">
<strong>Success!</strong> Your alert is showing!
</alert>
export class AlertExample {{'{'}}
showAlert: boolean = false;
{{'}'}}