<demo>

### More types

There are 4 types of Alert: `success`, `info`, `warning`, `error`. The default type is **`info`**.

```jsx live
<>
  <Alert>Info alert</Alert>
  <Alert type="success">Success alert</Alert>
  <Alert type="warning">Warning alert</Alert>
  <Alert type="error">Error alert</Alert>
</>
```

</demo>
