1#[cfg(feature = "textlayout")]
2pub(crate) mod paragraph;
3#[cfg(feature = "textlayout")]
4pub mod shaper;
5#[cfg(feature = "svg")]
6pub mod svg;
7#[cfg(feature = "textlayout")]
8pub use shaper::{icu, Shaper};
9
10// Export everything below paragraph under textlayout
11#[cfg(feature = "textlayout")]
12pub mod textlayout {
13 pub use super::paragraph::*;
14}
15