mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 14:29:22 -05:00
21 lines
857 B
Markdown
21 lines
857 B
Markdown
# Typography
|
|
|
|
```rust demo
|
|
view! {
|
|
<Space>
|
|
<Text>"text"</Text>
|
|
<Text code=true>"code"</Text>
|
|
<Caption1>"Caption1"</Caption1>
|
|
<Caption1Strong>"Caption1Strong"</Caption1Strong>
|
|
<Body1>"Body1"</Body1>
|
|
</Space>
|
|
}
|
|
```
|
|
|
|
## Text Props
|
|
|
|
| Name | Type | Default | Description |
|
|
| -------- | ----------------------------------- | -------------------- | --------------------------------------- |
|
|
| class | `OptionalProp<MaybeSignal<String>>` | `Default::default()` | Addtional classes for the text element. |
|
|
| code | `bool` | `false` | Use the code tag and style. |
|
|
| children | `Children` | | Text's content. |
|