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