meshtastic/src/components/Button.tsx
Sacha Weatherstone f89b477cbb Hardwar page work
2022-04-09 18:54:54 +10:00

17 lines
472 B
TypeScript

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>
);
};