Skip to content

Subheading

Subheadings are used for the title of any sub-sections

Usage

Used for the title of any sub-sections

Basic Usage

Any subtitle should here
preview
vue
<template>
  <p-subheading>
    Any subtitle should here
  </p-subheading>
</template>

Sizing

Any subtitle should here
Any subtitle should here
preview
vue
<template>
  <p-subheading size="sm">
    Any subtitle should here
  </p-subheading>
  <p-subheading size="md">
    Any subtitle should here
  </p-subheading>
</template>

Weight

Subheading have 3 weights variant, there are normal, medium and bold. Default weight is normal.

Normal subheading title
Medium subheading title
Bold subheading title
preview
vue
<template>
  <p-subheading weight="normal">
    Normal heading title
  </p-subheading>
  <p-subheading weight="medium">
    Medium heading title
  </p-subheading>
  <p-subheading weight="bold">
    Bold heading title
  </p-subheading>
</template>

Transform

Subheading have 4 transforms variant, there are normalcase, lowercase, capitalize and uppercase. Default transform is normalcase.

Normalcase subheading title
Lowercase subheading title
Capitalize subheading title
Uppercase subheading title
preview
vue
<template>
  <p-subheading transform="normalcase">
    Normalcase subheading title
  </p-subheading>
  <p-subheading transform="lowercase">
    Lowercase subheading title
  </p-subheading>
  <p-subheading transform="capitalize">
    Capitalize subheading title
  </p-subheading>
  <p-subheading transform="uppercase">
    Uppercase subheading title
  </p-subheading>
</template>

Overline

Any section title should here
Any section title should here
preview
vue
<template>
  <p-subheading overline weight="medium">
    Any section title should here
  </p-subheading>
  <p-subheading overline weight="bold">
    Any section title should here
  </p-subheading>
</template>

API

Props

PropsTypeDefaultDescription
sizeStringmdSize of subheading, valid value is sm and md
weightStringnormalWeight of subheading, valid value is normal, medium and bold
transformStringnormalcaseTransform of subheading, valid value is normalcase, lowercase, capitalize and uppercase
overlineBooleanfalseOverline variant. If overline is provided, subheading's size will be disabled automatically

Slots

NameDescription
defaultContent to place in subheading

Events

NameArgumentsDescription
There no props here

See Also

Released under the MIT License.