12/// Text alignment definitions
3#[derive(Debug, Clone)]
4pub enum TextAlign {
5/// Align text to the left
6Left,
7/// Align text to the center
8Center,
9/// Align text to the right
10Right,
11}
1213impl Default for TextAlign {
14fn default() -> Self {
15 TextAlign::Left
16 }
17}