zuicon_material/icons/
note_two_tone.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(NoteTwoTone)]
11pub fn note_two_tone(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("NoteTwoTone"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M15 6H4v12.01h16V11h-5z" opacity=".3"/><path d="M4 4c-1.1 0-2 .9-2 2v12.01c0 1.1.9 1.99 2 1.99h16c1.1 0 2-.9 2-2v-8l-6-6H4zm16 14.01H4V6h11v5h5v7.01z"/>
20 </SvgIcon>
21 }
22}