zuicon_material/icons/
credit_card_off_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CreditCardOffSharp)]
11pub fn credit_card_off_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CreditCardOffSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M6.83,4H22v15.17L14.83,12H20V8h-9.17L6.83,4z M20.49,23.31L17.17,20H2V4.83L0.69,3.51L2.1,2.1l19.8,19.8L20.49,23.31z M9.17,12l-4-4H4v4H9.17z"/>
20 </SvgIcon>
21 }
22}