use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn SwissFranc(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - SwissFranc" }
path { d: "M10 21V3h8" }
path { d: "M6 16h9" }
path { d: "M10 9.5h7" }
}
}
}