use dioxus::prelude::*;
#[derive(Clone, PartialEq, Props)]
pub struct IconProps {
#[props(default = 24)]
pub size: u32,
#[props(into, default = "currentColor")]
pub color: std::borrow::Cow<'static, str>,
#[props(default = 2)]
pub stroke_width: u32,
#[props(into, default = "round")]
pub stroke_linecap: std::borrow::Cow<'static, str>,
#[props(into, default = "round")]
pub stroke_linejoin: std::borrow::Cow<'static, str>,
#[props(into, default = "")]
pub class: std::borrow::Cow<'static, str>,
}