use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn IdCard(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - IdCard" }
path { d: "M16 10h2" }
path { d: "M16 14h2" }
path { d: "M6.17 15a3 3 0 0 1 5.66 0" }
circle { cx: "9", cy: "11", r: "2" }
rect { width: "20", height: "14", x: "2", y: "5", rx: "2" }
}
}
}