pub fn create_progress_spinner() -> ProgressBarExpand description
Create a standard progress spinner with consistent styling.
§Returns
A configured ProgressBar instance in spinner mode with cyan styling
and the standard spinner character sequence.
§Example
ⓘ
use crate::utils::progress::create_progress_spinner;
let spinner = create_progress_spinner();
spinner.set_message("Scanning files...");
// ... do work ...
spinner.finish_and_clear();