use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Infinity(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Infinity" }
path { d: "M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8" }
}
}
}