1 2 3 4 5 6 7 8 9 10 11 12 13
use dioxus::prelude::*; use super::SvgIcon; #[component] pub fn Thermometer(class: Option<String>) -> Element { rsx! { SvgIcon { class, title { "Rust UI Icons - Thermometer" } path { d: "M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z" } } } }