zuicon_material/icons/
compass_calibration_sharp.rs1use yew::{function_component, html, Html};
8use zu::svg_icon::{Props, SvgIcon};
9
10#[function_component(CompassCalibrationSharp)]
11pub fn compass_calibration_sharp(props: &Props) -> Html {
12 let new_props = Props{
13 icon: From::from("CompassCalibrationSharp"),
14 ..props.clone()
15 };
16
17 html! {
18 <SvgIcon ..new_props>
19 <path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 3C8.1 3 4.56 4.59 2 7.15l5 5c1.28-1.28 3.05-2.08 5-2.08s3.72.79 5 2.07l5-5C19.44 4.59 15.9 3 12 3z"/>
20 </SvgIcon>
21 }
22}