use std::borrow::Cow;
use crate::options::config::flags::TableGap;
pub struct DataTableProps {
pub title: Option<Cow<'static, str>>,
pub table_gap: TableGap,
pub left_to_right: bool,
pub is_basic: bool,
pub show_table_scroll_position: bool,
pub show_table_scroll_bar: bool,
pub show_current_entry_when_unfocused: bool,
}