diff --git a/packages/leptos/calendar/Cargo.toml b/packages/leptos/calendar/Cargo.toml index 940039d..15e9647 100644 --- a/packages/leptos/calendar/Cargo.toml +++ b/packages/leptos/calendar/Cargo.toml @@ -17,7 +17,6 @@ leptos-style.workspace = true tailwind_fuse.workspace = true web-sys.workspace = true js-sys.workspace = true -lucide-leptos = "2.32.0" [features] default = [] diff --git a/packages/leptos/date-picker/Cargo.toml b/packages/leptos/date-picker/Cargo.toml index 8960ec0..e1487c6 100644 --- a/packages/leptos/date-picker/Cargo.toml +++ b/packages/leptos/date-picker/Cargo.toml @@ -17,10 +17,9 @@ leptos-style.workspace = true tailwind_fuse.workspace = true web-sys.workspace = true js-sys.workspace = true -lucide-leptos = "2.32.0" -leptos-shadcn-calendar = "0.2.0" -leptos-shadcn-popover = "0.2.0" -leptos-shadcn-button = "0.2.0" +leptos-shadcn-calendar = "0.3.0" +leptos-shadcn-popover = "0.3.0" +leptos-shadcn-button = "0.3.0" [features] default = [] diff --git a/packages/leptos/pagination/Cargo.toml b/packages/leptos/pagination/Cargo.toml index fdd5157..5ba02c4 100644 --- a/packages/leptos/pagination/Cargo.toml +++ b/packages/leptos/pagination/Cargo.toml @@ -16,8 +16,7 @@ leptos-struct-component.workspace = true leptos-style.workspace = true tailwind_fuse.workspace = true web-sys.workspace = true -lucide-leptos = { version = "2.32.0", features = ["navigation"] } -leptos-shadcn-button = "0.2.0" +leptos-shadcn-button = "0.3.0" [features] default = [] diff --git a/packages/leptos/pagination/src/default.rs b/packages/leptos/pagination/src/default.rs index cda4344..771535c 100644 --- a/packages/leptos/pagination/src/default.rs +++ b/packages/leptos/pagination/src/default.rs @@ -1,6 +1,5 @@ use leptos::prelude::*; use tailwind_fuse::tw_merge; -use lucide_leptos::{ChevronLeft, ChevronRight}; const PAGINATION_CLASS: &str = "mx-auto flex w-full justify-center"; const PAGINATION_CONTENT_CLASS: &str = "flex flex-row items-center gap-1"; @@ -250,7 +249,9 @@ pub fn PaginationPrevious( } aria-label="Go to previous page" > - + + + {if let Some(children) = children { children().into_any() } else { @@ -293,7 +294,9 @@ pub fn PaginationNext( } else { view! { "Next" }.into_any() }} - + + + } }