pub const BULLET: &str = "•";Expand description
Unicode bullet character (•) used in pagination indicators and visual separators.
This constant provides a consistent bullet symbol for pagination dots, dividers,
and other list UI elements. The bullet character is automatically styled by
the respective style configurations in ListStyles.
§Usage
The bullet is automatically used by default in:
- Active and inactive pagination dots
- Divider elements between UI sections
- Visual separation in status displays
§Examples
use bubbletea_widgets::list::style::BULLET;
// Display pagination indicator
println!("Page 1 {} 2 {} 3", BULLET, BULLET);
// Create divider text
let divider = format!(" {} ", BULLET);
assert_eq!(divider, " • ");