use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn ChevronsLeftRightEllipsis(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - ChevronsLeftRightEllipsis" }
path { d: "M12 12h.01" }
path { d: "M16 12h.01" }
path { d: "m17 7 5 5-5 5" }
path { d: "m7 7-5 5 5 5" }
path { d: "M8 12h.01" }
}
}
}