rx.vstack(
rx.box(
"Example",
bg="yellow",
border_radius="sm",
width="20%",
),
rx.box(
"Example",
bg="orange",
border_radius="md",
width="40%",
),
rx.box(
"Example", bg="red", border_radius="md", width="60%"
),
rx.box(
"Example",
bg="lightblue",
border_radius="lg",
width="80%",
),
rx.box(
"Example",
bg="lightgreen",
border_radius="xl",
width="100%",
),
width="100%",
)
rx.box(
rx.button("Click Me"),
bg="lightgreen",
border_radius="15px",
border_color="green",
border_width="thick",
padding=5,
)
rx.box(
element="iframe",
src="https://www.youtube.com/embed/9bZkp7q19f0",
width="100%",
)
A generic container component that can contain other components.