All files / web/modules/components Button.tsx

62.5% Statements 5/8
100% Branches 2/2
0% Functions 0/1
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 241x 1x             1x                   1x       1x  
import * as React from 'react';
import styled from 'styled-components';
 
interface IProps {
  children: any;
  onClick: () => void;
}
 
const Link = styled.span`
  color: rgba(0, 0, 0, 0.65);
  padding: 5px 0;
  cursor: pointer;
 
  &:hover {
    color: #000;
  }
`;
 
const Button = ({ children, onClick }: IProps) => (
  <Link onClick={onClick}>{children}</Link>
);
 
export default Button;