mirror of
https://github.com/danbulant/lucide
synced 2026-07-06 19:50:47 +00:00
56 lines
1.7 KiB
Rust
56 lines
1.7 KiB
Rust
use yew::prelude::*;
|
|
#[derive(PartialEq, Properties)]
|
|
pub struct DramaProps {
|
|
#[prop_or(24)]
|
|
pub size: usize,
|
|
#[prop_or(AttrValue::from("currentColor"))]
|
|
pub color: AttrValue,
|
|
#[prop_or(AttrValue::from("none"))]
|
|
pub fill: AttrValue,
|
|
#[prop_or(2)]
|
|
pub stroke_width: usize,
|
|
#[prop_or(false)]
|
|
pub absolute_stroke_width: bool,
|
|
#[prop_or_default]
|
|
pub class: Classes,
|
|
#[prop_or_default]
|
|
pub style: std::option::Option<AttrValue>,
|
|
#[prop_or_default]
|
|
pub node_ref: NodeRef,
|
|
}
|
|
#[function_component]
|
|
pub fn Drama(props: &DramaProps) -> Html {
|
|
let stroke_width = if props.absolute_stroke_width {
|
|
props.stroke_width * 24 / props.size
|
|
} else {
|
|
props.stroke_width
|
|
};
|
|
html! {
|
|
<svg
|
|
ref={props.node_ref.clone()}
|
|
class={classes!("lucide", props.class
|
|
.clone())}
|
|
style={props.style.clone()}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.size.to_string()}
|
|
height={props.size.to_string()}
|
|
viewBox="0 0 24 24"
|
|
fill={& props.fill}
|
|
stroke={& props.color}
|
|
stroke-width={stroke_width.to_string()}
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<path d="M10 11h.01" />
|
|
<path d="M14 6h.01" />
|
|
<path d="M18 6h.01" />
|
|
<path d="M6.5 13.1h.01" />
|
|
<path d="M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3" />
|
|
<path d="M17.4 9.9c-.8.8-2 .8-2.8 0" />
|
|
<path
|
|
d="M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"
|
|
/>
|
|
<path d="M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4" />
|
|
</svg>
|
|
}
|
|
}
|