Components
An animated button component to enhance your app's user experience and interactivity. This example was made with Tailwind CSS and Framer Motion.
Loading preview...
import { Button } from "@/components/ui/button";
function ButtonExample() {
return (
<>
<Button type="button">Button</Button>
</>
);
}
export { ButtonExample };