use yew::prelude::{html, Component, Context, Html, Properties};
pub struct ChangeEntitlements {}
#[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 ChangeEntitlements {
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={ "ChangeEntitlements" }
viewBox={ "0 0 16 16" }
fill={ props.fill.unwrap_or("currentColor") }
style={ style }
>
<path d="M128 1920h899l128 128H0V0h1115l549 549v219h-128V640h-512V128H128v1792zM1152 219v293h293l-293-293zM256 512h639v127H256V512zm1151 256v127H256V768h1151zM256 1024h767v127H256v-127zm768 256v127H256v-127h768zm-768 383v-127h768l-128 127H256zm1213-162l-163 162h614v129h-614l163 163-90 90-318-317 318-317 90 90zm297-349l-163-163 90-90 318 317-318 317-90-90 163-163h-614v-128h614z" />
</svg>
}
}
}