All files / src/assets/APRIcons UnderwritingIcon.tsx

100% Statements 2/2
100% Branches 2/2
100% Functions 1/1
100% Lines 2/2

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        28x 106x                                    
type IconProps = {
  width?: number;
  height?: number;
};
const UnderwritingIcon = ({ width = 24, height = 24 }: IconProps) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 16 16"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <circle cx="7.99967" cy="7.99992" r="6.66667" fill="#6D9CF8" />
      <path
        d="M8.00126 10.8547C6.46526 10.8547 5.48926 9.96671 5.48926 8.54271V5.32671C5.48926 5.21625 5.5788 5.12671 5.68926 5.12671H6.50526C6.61571 5.12671 6.70526 5.21625 6.70526 5.32671V8.35071C6.70526 9.28671 7.13726 9.81471 8.00126 9.81471C8.92126 9.81471 9.29726 9.24671 9.29726 8.35071V5.32671C9.29726 5.21625 9.3868 5.12671 9.49726 5.12671H10.3133C10.4237 5.12671 10.5133 5.21625 10.5133 5.32671V8.54271C10.5133 10.0067 9.45726 10.8547 8.00126 10.8547Z"
        fill="white"
      />
    </svg>
  );
};
 
export default UnderwritingIcon;