# Alert

A custom admonition to highlight important updates or announcements. It includes an icon, a short description, and an optional link that can direct users to additional information or external resources.

Using:

```rst
.. alert::
   :link: https://scylladb.com
   :link_text: Learn more about the change
   :icon: logs

   We’re updating our license & versioning policy.
```

Renders as:


            <div class="alert">
                <div><i class="icon-logs"></i> We’re updating our license & versioning policy.</div>
                <div><a href="https://scylladb.com" >Learn more about the change <i class="icon-arrow-right"></i></a></div>
            </div>
