use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn Anchor(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Anchor" }
path { d: "M12 22V8" }
path { d: "M5 12H2a10 10 0 0 0 20 0h-3" }
circle { cx: "12", cy: "5", r: "3" }
}
}
}