mattzh72--articraft
11 行
259 B
Python
11 行
259 B
Python
"""Shared constants and tiny helpers for TUI output."""
|
|
|
|
from rich.text import Text
|
|
|
|
|
|
def status_icon(success: bool) -> Text:
|
|
"""Return a colored ✓ or ✗."""
|
|
if success:
|
|
return Text("✓", style="green")
|
|
return Text("✗", style="red")
|