This is a crate based on Lucide designed for Leptos front-end applications.
leptos-icons has a better implementation, and it also contains Lucide icons. I recommend using it!
# Cargo.toml
lucide-leptos = { git = "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/dandelion-huang/lucide-leptos.git", branch = "main" }use lucide_leptos::ArrowRight;
#[component]
fn MyComponent() -> impl IntoView {
view! {
<ArrowRight />
}
}