| 10 | export const Button: FC<PropsWithChildren< |
| 11 | ButtonHTMLAttributes<HTMLButtonElement> & HTMLAttributes<HTMLButtonElement> |
| 12 | >> = props => ( |
| 13 | <button {...props} className={clsx(styles.Button, props.className)} /> |
| 14 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected