zuicon_material/icons/
credit_score_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CreditScoreSharp)]
11pub fn credit_score_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CreditScoreSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0,0h24v24H0V0z" fill="none"/><path d="M2,4v16h7v-2H4v-6h18V4H2z M20,8H4V6h16V8z M14.93,19.17l-2.83-2.83l-1.41,1.41L14.93,22L22,14.93l-1.41-1.41L14.93,19.17z"/>
20 </SvgIcon>
21 }
22}