zuicon_material/icons/
settings_cell_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(SettingsCellSharp)]
11pub fn settings_cell_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("SettingsCellSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM6 0v20h12V0H6zm10 16H8V4h8v12z"/>
20 </SvgIcon>
21 }
22}