Stack

DaisyUI

Stack visually puts elements on top of each other.

Basic Stack
Modifiers

Stack-top, stack-bottom, stack-start, stack-end.

Code Example
use rsxui::components::{Stack, StackModifier};
use rsx_macros::rsx;
let html = rsx! {
    <Stack modifier=StackModifier::Top class="w-32">
        <img src="1.jpg" />
        <img src="2.jpg" />
        <img src="3.jpg" />
    </Stack>
};