use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn EqualApproximately(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - EqualApproximately" }
path { d: "M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0" }
path { d: "M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0" }
}
}
}