Components
A sleek, interactive download button that expands on hover, offering a smooth animation and an intuitive user experience. Perfect for adding a polished touch to any resume or file download action!
Loading preview...
"use client"
import * as React from "react"
import { AnimatedDownloadButton } from "@/components/ui/animated-hover-button"
function DemoAnimatedDownloadButton() {
return (
<div className="flex items-center justify-center min-h-screen bg-background">
<AnimatedDownloadButton />
</div>
)
}
export { DemoAnimatedDownloadButton }