pub trait IconProvider {
const BACK_ICON: &'static str;
const FOLDER_ICON: &'static str;
const FILE_ICON: &'static str;
const OPEN_ICON: &'static str;
}
pub struct DefaultIconProvider;
impl IconProvider for DefaultIconProvider {
const BACK_ICON: &'static str = "โคด";
const FOLDER_ICON: &'static str = "๐";
const FILE_ICON: &'static str = "";
const OPEN_ICON: &'static str = "๐";
}