Components
Loading preview...
Advanced button component with extended options and variants.
npx shadcn@latest add https://21st.dev/r/sean0205/buttonimport { Button } from "@/components/ui/button";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Button>Button</Button>
</div>
);
};
export { DemoOne };