Components
Loading preview...
An animated button component to enhance your app's user experience and interactivity. This example was made with Tailwind CSS and Framer Motion.
@bundui
npx shadcn@latest add https://21st.dev/r/bundui/buttonimport { Button } from "@/components/ui/button";
function ButtonExample() {
return (
<>
<Button type="button">Button</Button>
</>
);
}
export { ButtonExample };