mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 14:29:22 -05:00
3684f5961b
* demo: refactor docs * demo: refactor docs * demo: refactor guide docs * chore: workflow add listens to the demo_markdown * demo: refactor mobile docs
20 lines
875 B
Markdown
20 lines
875 B
Markdown
# Icon
|
|
|
|
```rust demo
|
|
view! {
|
|
<Space>
|
|
<Icon icon=icondata::Icon::from(icondata::AiIcon::AiCloseOutlined)/>
|
|
<Icon icon=icondata::Icon::from(icondata::AiIcon::AiCheckOutlined)/>
|
|
</Space>
|
|
}
|
|
```
|
|
|
|
### Icon Props
|
|
|
|
| Name | Type | Default | Desciption |
|
|
| ------ | ----------------------------- | -------------------- | ----------------------- |
|
|
| class | `Option<MaybeSignal<String>>` | `Default::default()` | HTML class attribute. |
|
|
| style | `Option<MaybeSignal<String>>` | `Default::default()` | HTML style attribute. |
|
|
| icon | `MaybeSignal<Icon>` | | The icon to show. |
|
|
| width | `Option<MaybeSignal<String>>` | `1em` | The width of the icon. |
|
|
| height | `Option<MaybeSignal<String>>` | `1em` | The height of the icon. |
|