zuicon_material/icons/
medical_information_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(MedicalInformationSharp)]
11pub fn medical_information_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("MedicalInformationSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M22,7h-7V2H9v5H2v15h20V7z M11,4h2v5h-2V4z M11,16H9v2H7v-2H5v-2h2v-2h2v2h2V16z M13,14.5V13h6v1.5H13z M13,17.5V16h4v1.5 H13z"/>
20 </SvgIcon>
21 }
22}