mirror of
https://github.com/danbulant/lucide
synced 2026-05-19 04:18:41 +00:00
feat: update to upstream v0.527.0 (#119)
Co-authored-by: rust-for-web[bot] <191031261+rust-for-web[bot]@users.noreply.github.com>
This commit is contained in:
parent
25974651e6
commit
65098ce1e1
13 changed files with 199 additions and 13 deletions
|
|
@ -8357,6 +8357,12 @@ pub fn IconsS2() -> Element {
|
|||
},
|
||||
"Spool",
|
||||
),
|
||||
(
|
||||
rsx! {
|
||||
Spotlight {}
|
||||
},
|
||||
"Spotlight",
|
||||
),
|
||||
(
|
||||
rsx! {
|
||||
SprayCan {}
|
||||
|
|
@ -8861,12 +8867,6 @@ pub fn IconsS2() -> Element {
|
|||
},
|
||||
"Strikethrough",
|
||||
),
|
||||
(
|
||||
rsx! {
|
||||
Subscript {}
|
||||
},
|
||||
"Subscript",
|
||||
),
|
||||
];
|
||||
rsx! {
|
||||
for (icon , name) in icons {
|
||||
|
|
@ -8882,6 +8882,12 @@ pub fn IconsS2() -> Element {
|
|||
#[component]
|
||||
pub fn IconsS3() -> Element {
|
||||
let icons = [
|
||||
(
|
||||
rsx! {
|
||||
Subscript {}
|
||||
},
|
||||
"Subscript",
|
||||
),
|
||||
(
|
||||
rsx! {
|
||||
Sun {}
|
||||
|
|
|
|||
|
|
@ -1727,6 +1727,7 @@ pub fn IconsS() -> impl IntoView {
|
|||
(view! { <SplinePointer /> }.into_any(), "Spline Pointer"),
|
||||
(view! { <Split /> }.into_any(), "Split"),
|
||||
(view! { <Spool /> }.into_any(), "Spool"),
|
||||
(view! { <Spotlight /> }.into_any(), "Spotlight"),
|
||||
(view! { <SprayCan /> }.into_any(), "Spray Can"),
|
||||
(view! { <Sprout /> }.into_any(), "Sprout"),
|
||||
(view! { <Square /> }.into_any(), "Square"),
|
||||
|
|
|
|||
|
|
@ -1746,6 +1746,7 @@ pub fn IconsS() -> Html {
|
|||
(html! { <SplinePointer /> }, "Spline Pointer"),
|
||||
(html! { <Split /> }, "Split"),
|
||||
(html! { <Spool /> }, "Spool"),
|
||||
(html! { <Spotlight /> }, "Spotlight"),
|
||||
(html! { <SprayCan /> }, "Spray Can"),
|
||||
(html! { <Sprout /> }, "Sprout"),
|
||||
(html! { <Square /> }, "Square"),
|
||||
|
|
|
|||
|
|
@ -3331,6 +3331,13 @@ mod spline_pointer;
|
|||
mod split;
|
||||
#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
|
||||
mod spool;
|
||||
#[cfg(any(
|
||||
feature = "devices",
|
||||
feature = "photography",
|
||||
feature = "multimedia",
|
||||
feature = "communication"
|
||||
))]
|
||||
mod spotlight;
|
||||
#[cfg(any(feature = "design", feature = "tools"))]
|
||||
mod spray_can;
|
||||
#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
|
||||
|
|
@ -7432,6 +7439,13 @@ pub use spline_pointer::*;
|
|||
pub use split::*;
|
||||
#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
|
||||
pub use spool::*;
|
||||
#[cfg(any(
|
||||
feature = "devices",
|
||||
feature = "photography",
|
||||
feature = "multimedia",
|
||||
feature = "communication"
|
||||
))]
|
||||
pub use spotlight::*;
|
||||
#[cfg(any(feature = "design", feature = "tools"))]
|
||||
pub use spray_can::*;
|
||||
#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
|
||||
|
|
|
|||
|
|
@ -34,10 +34,10 @@ pub fn MonitorDot(props: MonitorDotProps) -> Element {
|
|||
"stroke-width": "{stroke_width}",
|
||||
"stroke-linecap": "round",
|
||||
"stroke-linejoin": "round",
|
||||
circle { "cx": "19", "cy": "6", "r": "3" }
|
||||
path { "d": "M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9" }
|
||||
path { "d": "M12 17v4" }
|
||||
path { "d": "M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693" }
|
||||
path { "d": "M8 21h8" }
|
||||
circle { "cx": "19", "cy": "6", "r": "3" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
44
packages/dioxus/src/spotlight.rs
Normal file
44
packages/dioxus/src/spotlight.rs
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
use dioxus::prelude::*;
|
||||
#[derive(Clone, PartialEq, Props)]
|
||||
pub struct SpotlightProps {
|
||||
#[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<String>,
|
||||
pub style: Option<String>,
|
||||
}
|
||||
#[component]
|
||||
pub fn Spotlight(props: SpotlightProps) -> 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}" },
|
||||
"style": if let Some(style) = props.style { "{style}" },
|
||||
"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",
|
||||
path { "d": "M15.295 19.562 16 22" }
|
||||
path { "d": "m17 16 3.758 2.098" }
|
||||
path { "d": "m19 12.5 3.026-.598" }
|
||||
path { "d": "M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z" }
|
||||
path { "d": "M8 9V2" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3331,6 +3331,13 @@ mod spline_pointer;
|
|||
mod split;
|
||||
#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
|
||||
mod spool;
|
||||
#[cfg(any(
|
||||
feature = "devices",
|
||||
feature = "photography",
|
||||
feature = "multimedia",
|
||||
feature = "communication"
|
||||
))]
|
||||
mod spotlight;
|
||||
#[cfg(any(feature = "design", feature = "tools"))]
|
||||
mod spray_can;
|
||||
#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
|
||||
|
|
@ -7432,6 +7439,13 @@ pub use spline_pointer::*;
|
|||
pub use split::*;
|
||||
#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
|
||||
pub use spool::*;
|
||||
#[cfg(any(
|
||||
feature = "devices",
|
||||
feature = "photography",
|
||||
feature = "multimedia",
|
||||
feature = "communication"
|
||||
))]
|
||||
pub use spotlight::*;
|
||||
#[cfg(any(feature = "design", feature = "tools"))]
|
||||
pub use spray_can::*;
|
||||
#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
|
||||
|
|
|
|||
|
|
@ -29,10 +29,10 @@ pub fn MonitorDot(
|
|||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
>
|
||||
<circle cx="19" cy="6" r="3" />
|
||||
<path d="M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9" />
|
||||
<path d="M12 17v4" />
|
||||
<path d="M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693" />
|
||||
<path d="M8 21h8" />
|
||||
<circle cx="19" cy="6" r="3" />
|
||||
</svg>
|
||||
}
|
||||
}
|
||||
|
|
|
|||
39
packages/leptos/src/spotlight.rs
Normal file
39
packages/leptos/src/spotlight.rs
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
use leptos::{prelude::*, svg::Svg};
|
||||
#[component]
|
||||
pub fn Spotlight(
|
||||
#[prop(default = 24.into(), into)] size: Signal<usize>,
|
||||
#[prop(default = "currentColor".into(), into)] color: Signal<String>,
|
||||
#[prop(default = "none".into(), into)] fill: Signal<String>,
|
||||
#[prop(default = 2.into(), into)] stroke_width: Signal<usize>,
|
||||
#[prop(default = false.into(), into)] absolute_stroke_width: Signal<bool>,
|
||||
#[prop(optional)] node_ref: NodeRef<Svg>,
|
||||
) -> impl IntoView {
|
||||
let stroke_width = Signal::derive(move || {
|
||||
if absolute_stroke_width.get() {
|
||||
stroke_width.get() * 24 / size.get()
|
||||
} else {
|
||||
stroke_width.get()
|
||||
}
|
||||
});
|
||||
view! {
|
||||
<svg
|
||||
node_ref=node_ref
|
||||
class:lucide=true
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width=size
|
||||
height=size
|
||||
viewBox="0 0 24 24"
|
||||
fill=fill
|
||||
stroke=color
|
||||
stroke-width=stroke_width
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
>
|
||||
<path d="M15.295 19.562 16 22" />
|
||||
<path d="m17 16 3.758 2.098" />
|
||||
<path d="m19 12.5 3.026-.598" />
|
||||
<path d="M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z" />
|
||||
<path d="M8 9V2" />
|
||||
</svg>
|
||||
}
|
||||
}
|
||||
|
|
@ -3333,6 +3333,13 @@ mod spline_pointer;
|
|||
mod split;
|
||||
#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
|
||||
mod spool;
|
||||
#[cfg(any(
|
||||
feature = "devices",
|
||||
feature = "photography",
|
||||
feature = "multimedia",
|
||||
feature = "communication"
|
||||
))]
|
||||
mod spotlight;
|
||||
#[cfg(any(feature = "design", feature = "tools"))]
|
||||
mod spray_can;
|
||||
#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
|
||||
|
|
@ -7434,6 +7441,13 @@ pub use spline_pointer::*;
|
|||
pub use split::*;
|
||||
#[cfg(any(feature = "communication", feature = "tools", feature = "social"))]
|
||||
pub use spool::*;
|
||||
#[cfg(any(
|
||||
feature = "devices",
|
||||
feature = "photography",
|
||||
feature = "multimedia",
|
||||
feature = "communication"
|
||||
))]
|
||||
pub use spotlight::*;
|
||||
#[cfg(any(feature = "design", feature = "tools"))]
|
||||
pub use spray_can::*;
|
||||
#[cfg(any(feature = "nature", feature = "gaming", feature = "sustainability"))]
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ pub fn MonitorDot(props: &MonitorDotProps) -> Html {
|
|||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
>
|
||||
<circle cx="19" cy="6" r="3" />
|
||||
<path d="M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9" />
|
||||
<path d="M12 17v4" />
|
||||
<path d="M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693" />
|
||||
<path d="M8 21h8" />
|
||||
<circle cx="19" cy="6" r="3" />
|
||||
</svg>
|
||||
}
|
||||
}
|
||||
|
|
|
|||
53
packages/yew/src/spotlight.rs
Normal file
53
packages/yew/src/spotlight.rs
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
use yew::prelude::*;
|
||||
#[derive(PartialEq, Properties)]
|
||||
pub struct SpotlightProps {
|
||||
#[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 Spotlight(props: &SpotlightProps) -> 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="M15.295 19.562 16 22" />
|
||||
<path d="m17 16 3.758 2.098" />
|
||||
<path d="m19 12.5 3.026-.598" />
|
||||
<path
|
||||
d="M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"
|
||||
/>
|
||||
<path d="M8 9V2" />
|
||||
</svg>
|
||||
}
|
||||
}
|
||||
|
|
@ -11,5 +11,5 @@ pub const GITHUB_OWNER: &str = "RustForWeb";
|
|||
pub const GITHUB_REPO: &str = "lucide";
|
||||
|
||||
pub const UPSTREAM_GIT_URL: &str = "https://github.com/lucide-icons/lucide.git";
|
||||
pub const UPSTREAM_GIT_REF: &str = "0.526.0";
|
||||
pub const UPSTREAM_GIT_REF: &str = "0.527.0";
|
||||
pub const UPSTREAM_GITHUB_URL: &str = "https://github.com/lucide-icons/lucide";
|
||||
|
|
|
|||
Loading…
Reference in a new issue