radix_leptos_checkbox/lib.rs
1//! Leptos port of [Radix Checkbox](https://www.radix-ui.com/primitives/docs/components/checkbox).
2//!
3//! A control that allows the user to toggle between checked and not checked.
4//!
5//! See [the Rust Radix book](https://radix.rustforweb.org/primitives/components/checkbox.html) for more documentation.
6//!
7//! See [`@radix-ui/react-checkbox`](https://www.npmjs.com/package/@radix-ui/react-checkbox) for the original package.
8
9mod checkbox;
10
11pub use checkbox::*;