use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Percent(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Percent" }
<line x1="19" x2="5" y1="5" y2="19" />
<circle cx="6.5" cy="6.5" r="2.5" />
<circle cx="17.5" cy="17.5" r="2.5" />
}
}
}