zuicon_material/icons/
dock_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DockTwoTone)]
11pub fn dock_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DockTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M8 5h8v10H8z" opacity=".3"/><path d="M8 21h8v2H8zm8-19.99L8 1c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM16 15H8V5h8v10z"/>
20 </SvgIcon>
21 }
22}