fix: removed a glob import that was causing a warning

The pub use card::* was only exporting card::style, but something else in the file was also exporting the name "style" so there was a conflict.
This commit is contained in:
Adam Cosner 2026-04-08 00:42:46 -04:00
parent 5d1dfc4c54
commit 47b5410253

View file

@ -119,8 +119,6 @@ pub mod calendar;
pub use calendar::{Calendar, calendar};
pub mod card;
#[doc(inline)]
pub use card::*;
pub mod color_picker;
#[doc(inline)]