1import { Button } from "../ui/button";
2
3const Button1 = () => {
4 return (
5 <Button size="lg" className="py-6 rounded-2xl border-2 border-secondary bg-primary font-semibold uppercase text-primary-foreground transition-all duration-300 hover:translate-x-[-6px] hover:translate-y-[-6px] hover:rounded-md hover:shadow-[6px_6px_0px_black] active:translate-x-[0px] active:translate-y-[0px] active:rounded-2xl active:shadow-none">
6 Hover me
7 </Button>
8 );
9};
10
11export default Button1;