mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
17 lines
472 B
TypeScript
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>
|
||
|
);
|
||
|
};
|