radix_leptos_focus_guards/lib.rs
1//! Leptos port of [Radix Focus Guards](https://www.radix-ui.com/primitives).
2//!
3//! This is an internal utility, not intended for public usage.
4//!
5//! See [`@radix-ui/react-focus-guards`](https://www.npmjs.com/package/@radix-ui/react-focus-guards) for the original package.
6
7mod focus_guards;
8
9pub use focus_guards::*;