zuicon_material/icons/
deblur_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(DeblurTwoTone)]
11pub fn deblur_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("DeblurTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M12,3v2c3.86,0,7,3.14,7,7s-3.14,7-7,7v2c4.96,0,9-4.04,9-9S16.96,3,12,3z"/><path d="M12,5v14c3.86,0,7-3.14,7-7S15.86,5,12,5z" opacity=".3"/>
20 </SvgIcon>
21 }
22}