use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CirclePoundSterling(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CirclePoundSterling" }
path { d: "M10 16V9.5a1 1 0 0 1 5 0" }
path { d: "M8 12h4" }
path { d: "M8 16h7" }
circle { cx: "12", cy: "12", r: "10" }
}
}
}