Components
Loading preview...
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>
);
}