mirror of https://github.com/Textualize/rich.git
10 lines
218 B
Python
10 lines
218 B
Python
|
from rich import print
|
||
|
from rich.console import RenderGroup
|
||
|
from rich.panel import Panel
|
||
|
|
||
|
panel_group = RenderGroup(
|
||
|
Panel("Hello", style="on blue"),
|
||
|
Panel("World", style="on red"),
|
||
|
)
|
||
|
print(Panel(panel_group))
|