Caption 
Small additional title.
Usage 
Basic Usage 
 Any caption should here preview
vue
<template>
  <p-caption>
    Any caption should here
  </p-caption>
</template>Size 
Caption have 2 sizes variant, there are xs and tn. Default size is xs.
 Small caption should here  Tiny caption should here preview
vue
<template>
  <p-caption size="xs">
    Small caption should here
  </p-caption>
  <p-caption size="tn">
    Tiny caption should here
  </p-caption>
</template>Weight 
Caption have 3 weights variant, there are normal, medium and bold. Default weight is normal.
 Normal caption should here  Medium caption should here  Bold caption should here preview
vue
<template>
  <p-caption weight="normal">
    Normal caption should here
  </p-caption>
  <p-caption weight="medium">
    Medium caption should here
  </p-caption>
  <p-caption weight="bold">
    Bold caption should here
  </p-caption>
</template>Transform 
Caption have 4 transforms variant, there are normalcase, lowercase, capitalize and uppercase. Default transform is normalcase.
 Normalcase caption should here  Lowercase caption should here  Capitalize caption should here  Uppercase caption should here preview
vue
<template>
  <p-caption transform="normalcase">
    Normalcase caption should here
  </p-caption>
  <p-caption transform="lowercase">
    Lowercase caption should here
  </p-caption>
  <p-caption transform="capitalize">
    Capitalize caption should here
  </p-caption>
  <p-caption transform="uppercase">
    Uppercase caption should here
  </p-caption>
</template>API 
Props 
| Props | Type | Default | Description | 
|---|---|---|---|
| size | String | xs | Size of caption, valid value is xsandtn | 
| weight | String | normal | Weight of subheading, valid value is normal,mediumandbold | 
| transform | String | normalcase | Transform of subheading, valid value is normalcase,lowercase,capitalizeanduppercase | 
Slots 
| Name | Description | 
|---|---|
| default | Content to place in caption | 
Events 
| Name | Arguments | Description | 
|---|---|---|
| There no event here | ||