use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Contrast(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Contrast" }
circle { cx: "12", cy: "12", r: "10" }
path { d: "M12 18a6 6 0 0 0 0-12v12z" }
}
}
}