zuicon_material/icons/
upload_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(UploadTwoTone)]
11pub fn upload_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("UploadTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M9.83 8H11v6h2V8h1.17L12 5.83z" opacity=".3"/><path d="M12 3l-7 7h4v6h6v-6h4l-7-7zm1 5v6h-2V8H9.83L12 5.83 14.17 8H13zM5 18h14v2H5z"/>
20 </SvgIcon>
21 }
22}