use dioxus::prelude::*;
use super::SvgIcon;
// TODO. Make it work with the name `Option`.
#[component]
pub fn OptionIcon(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - Option" }
path { d: "M3 3h6l6 18h6" }
path { d: "M14 3h7" }
}
}
}