use ansiterm::Style;
use crate::fs::fields as f;
use crate::output::cell::TextCell;
use crate::output::table::FlagsFormat;
impl f::Flags {
pub fn render(self, style: Style, _format: FlagsFormat) -> TextCell {
TextCell::paint(style, "-".to_string())
}
}