use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn RectangleEllipsis(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - RectangleEllipsis" }
rect { width: "20", height: "12", x: "2", y: "6", rx: "2" }
path { d: "M12 12h.01" }
path { d: "M17 12h.01" }
path { d: "M7 12h.01" }
}
}
}