zuicon_material/icons/
burst_mode_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(BurstModeSharp)]
11pub fn burst_mode_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("BurstModeSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0z" fill="none"/><path d="M1 5h2v14H1V5zm4 0h2v14H5V5zm18 0H9v14h14V5zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z"/>
20 </SvgIcon>
21 }
22}