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