Display elements vertically or horizontally on the page.
import { Stack } from "@/components/ui/stack"; export default function DefaultDemo() { return ( <Stack gap={3}> <div className="bg-gray-400 h-12 w-12 rounded-md p-2"> <div className="h-full w-full rounded bg-gray-800" /> </div> <div className="bg-gray-400 h-12 w-12 rounded-md p-2"> <div className="h-full w-full rounded bg-gray-800" /> </div> <div className="bg-gray-400 h-12 w-12 rounded-md p-2"> <div className="h-full w-full rounded bg-gray-800" /> </div> </Stack> ); }
Part of Geist — browse the full library on 21st.dev.