Text

Display text using well-defined typographic styles.

Default

The Evil Rabbit jumps.

The Evil Rabbit jumps.

The Evil Rabbit jumps.

The Evil Rabbit jumps.

The Evil Rabbit jumps.

The Evil Rabbit jumps.

The Evil Rabbit jumps.

code
<template>
  <PStack direction="col">
    <PText :size="48">The Evil Rabbit jumps.</PText>
    <PText :size="32">The Evil Rabbit jumps.</PText>
    <PText :size="24">The Evil Rabbit jumps.</PText>
    <PText :size="20">The Evil Rabbit jumps.</PText>
    <PText :size="16">The Evil Rabbit jumps.</PText>
    <PText :size="14">The Evil Rabbit jumps.</PText>
    <PText :size="12">The Evil Rabbit jumps.</PText>
  </PStack>
</template>

Responsive

The Evil Rabbit jumps.

code
<template>
  <PText :size="{ sm: 24, md: 32, lg: 48 }">The Evil Rabbit jumps.</PText>
</template>

Truncate

The Evil Rabbit jumps. The Evil Rabbit jumps.

The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps.

The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps.

code
<template>
  <PStack direction="col" gap="7">
    <PText truncate style="max-width:200px">The Evil Rabbit jumps. The Evil Rabbit jumps.</PText>

    <PText truncate="2" style="max-width: 200px">
      The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The
      Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The
      Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The
      Evil Rabbit jumps. The Evil Rabbit jumps.
    </PText>

    <PText :truncate="3" style="max-width: 200px">
      The Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The
      Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The
      Evil Rabbit jumps. The Evil Rabbit jumps. The Evil Rabbit jumps. The
      Evil Rabbit jumps. The Evil Rabbit jumps.
    </PText>
  </PStack>
</template>

Align

The Evil Rabbit jumps.

The Evil Rabbit jumps.

The Evil Rabbit jumps.

code
<template>
  <PText align="left">The Evil Rabbit jumps.</PText>
  <PText align="center">The Evil Rabbit jumps.</PText>
  <PText align="right">The Evil Rabbit jumps.</PText>
</template>

Monospace

This is a sans-serif font.

This is a monospace font.

code
<template>
  <PText>This is a sans-serif font.</PText>
  <PText monospace>This is a monospace font.</PText>
</template>