All files / app/components HeaderButton.tsx

100% Statements 7/7
100% Branches 0/0
100% Functions 1/1
100% Lines 6/6

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 24 25 26 27 28 2911x 11x             11x 201x                               11x   157x  
import { IconButton, IconButtonProps } from "@mui/material";
import React, { ReactNode } from "react";
 
interface HeaderButtonProps extends IconButtonProps {
  children?: ReactNode;
  onClick: () => void;
}
 
const HeaderButton = React.forwardRef<HTMLButtonElement, HeaderButtonProps>((props, ref) => {
  const { className, children, onClick, ...otherProps } = props;
 
  return (
    <IconButton
      {...otherProps}
      onClick={onClick}
      className={className}
      size="large"
      ref={ref}
      sx={{ borderRadius: "50%", boxShadow: "0px 0px 4px" }}
    >
      {children}
    </IconButton>
  );
});
 
HeaderButton.displayName = "HeaderButton";
 
export default HeaderButton;