Koyaka

Alert

Alert Basic

Your changes have been saved successfully.


    <div class="alert">
        <p>Your changes have been saved successfully.</p>
    </div>
    

Alert with Icon

Download in progress. Please wait a moment.


    <div class="alert">
        <div class="icon">
            <i class="fa-solid fa-circle-chevron-down"></i>
        </div>
        <p>Download in progress. Please wait a moment.</p>
    </div>
    

Alert with Header

Update Available

A new version of the application is ready to install.


    <div class="alert">
        <div>
            <h5>Update Available</h5>
            <p class="mt-1">
                A new version of the application is ready to install.
            </p>
        </div>
    </div>
    

Alert with Actions

Account Security

We noticed a new login from an unfamiliar device.


    <div class="alert">
        <img src="/images/shield.svg" />

        <div class="alert-content">
            <h5>Account Security</h5>
            <p class="mt-1">
                We noticed a new login from an unfamiliar device.
            </p>
        </div>

        <div class="alert-actions">
            <button class="button sm">Dismiss</button>
            <button class="button sm primary">Review</button>
        </div>
    </div>
    

Minimal Alert

You're all set! No further action is required.


    <div class="alert border-0">
        <p>You're all set! No further action is required.</p>
    </div>