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