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-500 h-12 w-12 rounded-md" /> <div className="bg-gray-500 h-12 w-12 rounded-md" /> <div className="bg-gray-500 h-12 w-12 rounded-md" /> </Stack> ); }
Part of Geist — browse the full library on 21st.dev.