import React from "react"; import { HTMLMotionProps, motion } from "framer-motion"; export const Button = ({ children, ...props }: HTMLMotionProps<"div">) => { return (
{children}
); };