# Tabbar ```rust use thaw::mobile::*; let value = create_rw_signal(String::from("o")); view! {
{move || value.get()} "and" "if" "or"
} ``` ### Tabbar Props | Name | Type | Default | Description | | -------- | --------------- | -------------------- | ----------------- | | value | `Model` | `Default::default()` | Tabbar's value. | | children | `Children` | | Tabbar's content. | ### TabbarItem Props | Name | Type | Default | Description | | -------- | --------------------- | ------- | ----------------------------------- | | key | `MaybeSignal` | | The indentifier of the tabbar item. | | icon | `Option` | `None` | TabbarItem's icon. | | children | `Children` | | TabbarItem's content. |