| 13 | import styles from './ButtonSimple.module.css' |
| 14 | |
| 15 | interface ButtonSimpleProps extends HTMLProps<HTMLButtonElement> { |
| 16 | className?: string |
| 17 | animated?: AnimatedProp |
| 18 | children: ReactNode |
| 19 | } |
| 20 | |
| 21 | const ButtonSimple = memo((props: ButtonSimpleProps): JSX.Element => { |
| 22 | const { className, animated, children, ...otherProps } = props |
nothing calls this directly
no outgoing calls
no test coverage detected