use dioxus::prelude::*; #[derive(Clone, PartialEq, Props)] pub struct DribbbleProps { #[props(default = 24)] pub size: usize, #[props(default = "currentColor".to_owned())] pub color: String, #[props(default = "none".to_owned())] pub fill: String, #[props(default = 2)] pub stroke_width: usize, #[props(default = false)] pub absolute_stroke_width: bool, pub class: Option, } #[component] pub fn Dribbble(props: DribbbleProps) -> Element { let stroke_width = if props.absolute_stroke_width { props.stroke_width * 24 / props.size } else { props.stroke_width }; rsx! { svg { "xmlns": "http://www.w3.org/2000/svg", "class": if let Some(class) = props.class { "{class}" }, "width": "{props.size}", "height": "{props.size}", "viewBox": "0 0 24 24", "fill": "{props.fill}", "stroke": "{props.color}", "stroke-width": "{stroke_width}", "stroke-linecap": "round", "stroke-linejoin": "round", circle { "cx": "12", "cy": "12", "r": "10" } path { "d": "M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94" } path { "d": "M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32" } path { "d": "M8.56 2.75c4.37 6 6 9.42 8 17.72" } } } }