zuicon_material/icons/
text_increase_outlined.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(TextIncreaseOutlined)]
11pub fn text_increase_outlined(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("TextIncreaseOutlined"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0.99,19h2.42l1.27-3.58h5.65L11.59,19h2.42L8.75,5h-2.5L0.99,19z M5.41,13.39L7.44,7.6h0.12l2.03,5.79H5.41z M20,11h3v2h-3 v3h-2v-3h-3v-2h3V8h2V11z"/>
20 </SvgIcon>
21 }
22}