zuicon_material/icons/
code_off_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CodeOffTwoTone)]
11pub fn code_off_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CodeOffTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M19.17,12l-4.58-4.59L16,6l6,6l-3.59,3.59L17,14.17L19.17,12z M1.39,4.22l4.19,4.19L2,12l6,6l1.41-1.41L4.83,12L7,9.83 l12.78,12.78l1.41-1.41L2.81,2.81L1.39,4.22z"/>
20 </SvgIcon>
21 }
22}