Components

// This is a file with a demo for your component
// That's what users will see in the preview
// Create new files in this directory to add more demos
import { Button } from "@/components/ui/button";
import { ArrowUpIcon } from "lucide-react"
// ONLY DEFAULT EXPORT WILL BE TREATED AS A DEMO
export default function DemoOne() {
return (
<div className="flex flex-wrap items-center gap-2 md:flex-row">
<Button variant="outline">Button</Button>
<Button variant="outline" size="icon" aria-label="Submit">
<ArrowUpIcon />
</Button>
</div>
);
}
Part of Kromm Lab — browse the full library on 21st.dev.