use yew::prelude::{html, Component, Context, Html, Properties};
pub struct CommonDataServiceCds {}
#[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 CommonDataServiceCds {
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={ "CommonDataServiceCDS" }
viewBox={ "0 0 16 16" }
fill={ props.fill.unwrap_or("currentColor") }
style={ style }
>
<path d="M1523 0l525 525v998l-525 525H525L0 1523V525L525 0h998zM512 1854l13-331-397-384v331l384 384zm0-512v-331L128 627v331l384 384zm0-512V194L194 512l318 318zm128-702v768h830l384-384-384-384H640zm0 1011v269h269l-269-269zm0 397v268l268-268H640zm1280-66v-331l-397 397h-434l-384 384h765l450-450zm0-512V627l-397 397H706l384 384h380l450-450z" />
</svg>
}
}
}