Asib27's picture
try 1
065fee7 verified
raw
history blame
206 Bytes
from rich import print
from rich.console import Group
from rich.panel import Panel
panel_group = Group(
Panel("Hello", style="on blue"),
Panel("World", style="on red"),
)
print(Panel(panel_group))