Alert

PHOTO EMBED

Wed Apr 06 2022 12:53:45 GMT+0000 (Coordinated Universal Time)

Saved by @realsantosm #css

<div class="alert alert--success m-v-1">
 This is success alert
<button class="alert--close">×< /button>
 < /div>
 <div class="alert alert--error m-v-1">
  This is error alert
<button class="alert--close">×< /button>
< /div>
 <div class="alert alert--message m-v-1">
  This is message alert<button class="alert--close">×< /button>
 < /div>
 <div class="alert alert--information m-v-1">
 This is information alert
 <button class="alert--close">×< /button>
< /div>
content_copyCOPY

Alert is the component where you can provide success, error, information message to the users. we provide four different types of alert. You can use them by using alert--success, alert--error, alert--information, alert--message
from @realsantosm