A short inline quotation.
A short inline quotation.
| Prop | Type | Default | Description |
|---|---|---|---|
| weight | enum: black, extrabold, bold, semibold, medium, normal, light, extralight, thin | No default value | The font weight. |
| size | enum: 4xl, 3xl, 2xl, xl, lg, md, sm, xs | No default value | The font size. |
| align | enum: left, center, or right | No default value | The text alignment. |
| tracking | enum: tighter, tight, normal, wide, wider, or widest | size-dependent | The letter spacing. |
<P> When Dave asks HAL to open the pod bay door, HAL answers: <Q>I'm sorry, Dave. I'm afraid I can't do that.</Q></P>Here's the <Q /> component in action.
When Dave asks HAL to open the pod bay door, HAL answers: I'm sorry, Dave. I'm afraid I can't do that.
/* ### Typography ### */@layer components { /* Q */ .q { @apply before:content-['“'] after:content-['”']; }}