use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Baseline(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Baseline" }
path { d: "M4 20h16" }
path { d: "m6 16 6-12 6 12" }
path { d: "M8 12h8" }
}
}
}