@fluid-topics/ft-typography
Version:
Typography components
22 lines (16 loc) • 343 B
Markdown
A typography component.
## Install
```shell
npm install @fluid-topics/ft-typography
yarn add @fluid-topics/ft-typography
```
## Usage
```typescript
import { html } from "lit"
import "@fluid-topics/ft-typography"
function render() {
return html`
<ft-typography variant="title">Typography component</ft-typography>
`
}
```