Banner 
Alert to convey information or actions
Usage 
Simple usage 
 Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s) 
vue
<template>
  <p-banner>
    Every sign will requires privy balance.
    Please make sure you have enough privy balance
    before sign the document(s)
  </p-banner>
</template>With title 
Your enterprise Privy Balance is running out.
 Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s) 
vue
<template>
  <p-banner>
    <p-subheading>
      Your enterprise Privy Balance is running out.
    </p-subheading>
    <div class="text-sm">
      Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s)
    </div>
  </p-banner>
</template>With title and button 
Your enterprise Privy Balance is running out.
 Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s) 
vue
<template>
  <p-banner>
    <p-subheading>
      Your enterprise Privy Balance is running out.
    </p-subheading>
    <div class="text-sm">
      Every sign will requires privy balance.
      Please make sure you have enough privy balance
      before sign the document(s)
    </div>
    <div class="mt-3">
      <p-button variant="outline" size="sm">Top Up Balance</p-button>
      <p-button variant="link">Learn More</p-button>
    </div>
  </p-banner>
</template>Custom Icon 
 Great! Your Privy ID and NPWP are verified. 
vue
<template>
  <p-banner>
    <template #icon>
      <IconCheck class="text-success" />
    </template>
    <span>
      Great! Your Privy ID and NPWP are verified.
    </span>
  </p-banner>
  <script setup>
  import IconCheck from '@privyid/persona-icon/vue/checkmark-circle-solid/20.vue'
  </script>
</template>Variants 
Banner have 2 variants: info and danger, default is info
 Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s) 
 Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s) 
vue
<template>
  <p-banner variant="info">
    Every sign will requires privy balance.
    Please make sure you have enough privy balance
    before sign the document(s)
  </p-banner>
  <p-banner variant="danger">
    Every sign will requires privy balance.
    Please make sure you have enough privy balance
    before sign the document(s)
  </p-banner>
</template>Hide close button 
You can hide close button with dismissable set to false
 Every sign will requires privy balance. Please make sure you have enough privy balance before sign the document(s) 
vue
<template>
  <p-banner :dismissable="false">
    Every sign will requires privy balance.
    Please make sure you have enough privy balance
    before sign the document(s)
  </p-banner>
</template>API 
Props 
| Props | Type | Default | Description | 
|---|---|---|---|
| variant | String | info | Banner variant, valid value is info,danger | 
| dismissable | Boolean | true | Show / Hide dismiss button | 
Slots 
| Name | Description | 
|---|---|
| default | Content to place in banner | 
| icon | Content to place icon in banner | 
Events 
| Name | Arguments | Description | 
|---|---|---|
| dismissed | - | Event when close button clicked |