pub fn error_message(content: impl AsRef<str>) -> StringExpand description
Format an error message with emoji and red styling
Content can include inner styling like <bold>:
use color_print::cformat;
use worktrunk::styling::error_message;
let name = "feature";
println!("{}", error_message(cformat!("Branch <bold>{name}</> not found")));