use yew::prelude::{html, Component, Context, Html, Properties};
pub struct PivotChart {}
#[derive(Properties, Debug, Clone, PartialEq, Eq)]
pub struct Props {
#[prop_or_default]
pub class: Option<&'static str>,
#[prop_or_default]
pub width: Option<&'static str>,
#[prop_or_default]
pub height: Option<&'static str>,
#[prop_or_default]
pub color: Option<&'static str>,
#[prop_or_default]
pub fill: Option<&'static str>,
#[prop_or_default]
pub spin: bool,
#[prop_or_default]
pub rotate: i16,
}
impl Component for PivotChart {
type Properties = Props;
type Message = ();
fn create(_ctx: &Context<Self>) -> Self {
Self {}
}
fn view(&self, ctx: &Context<Self>) -> Html {
let props = ctx.props();
let mut style = String::new();
if props.rotate != 0 {
style += &format!("transform: rotate({}deg);", props.rotate);
}
html! {
<svg
xmlns={ "http://www.w3.org/2000/svg" }
class={ props.class.unwrap_or("") }
width={ props.width.unwrap_or("16") }
height={ props.height.unwrap_or("16") }
focusable={ "false" }
data-icon={ "PivotChart" }
viewBox={ "0 0 16 16" }
fill={ props.fill.unwrap_or("currentColor") }
style={ style }
>
<path d="M2048 0v2048H0V0h2048zm-128 128H128v1792h1792V128zM640 640H256V256h384v384zM512 384H384v128h128V384zm128 1408H256V768h384v1024zM512 896H384v768h128V896zm1280-256H768V256h1024v384zm-128-256H896v128h768V384zM979 1709l-237-237 237-237 90 90-82 83h293q27 0 50-10t40-27 28-41 10-50V987l-83 82-90-90 237-237 237 237-90 90-83-82v293q0 53-20 99t-55 82-81 55-100 20H987l82 83-90 90z" />
</svg>
}
}
}