zuicon_material/icons/
text_rotate_vertical_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TextRotateVerticalSharp)]
11pub fn text_rotate_vertical_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TextRotateVerticalSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0zm0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none"/><path d="M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z"/>
20 </SvgIcon>
21 }
22}