meshtastic/src/components/Button.tsx

17 lines
472 B
TypeScript
Raw Normal View History

2022-04-09 01:54:54 -07:00
import React from 'react';
import { HTMLMotionProps, motion } from 'framer-motion';
export const Button = ({ children, ...props }: HTMLMotionProps<'div'>) => {
return (
<motion.div
{...props}
whileHover={{ scale: 1.1, backgroundColor: 'var(--tertiary)' }}
whileTap={{ scale: 1.0 }}
className="m-auto flex cursor-pointer rounded-full bg-secondary p-3 shadow-md"
>
<div className="m-auto">{children}</div>
</motion.div>
);
};