All files / src/assets/icons RefundIconTop.tsx

50% Statements 1/2
0% Branches 0/3
0% Functions 0/1
50% Lines 1/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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68            519x                                                                                                                          
interface IconProps {
  height?: number;
  width?: number;
  fill?: string;
}
 
const RefundIconTop = ({
  width = 24,
  height = 24,
  fill = "#A9AFBD",
}: IconProps) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 36 36"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <g filter="url(#filter0_i_2348_11937)">
        <path
          d="M18.7929 14.2071C19.1834 14.5976 19.8166 14.5976 20.2071 14.2071C20.5976 13.8166 20.5976 13.1834 20.2071 12.7929L18.7929 14.2071ZM12.1414 6.14142L11.4343 6.84852L11.4343 6.84853L12.1414 6.14142ZM11.8586 6.14142L11.1515 5.43431L11.1515 5.43431L11.8586 6.14142ZM3.79289 12.7929C3.40237 13.1834 3.40237 13.8166 3.79289 14.2071C4.18342 14.5976 4.81658 14.5976 5.20711 14.2071L3.79289 12.7929ZM29.5 13.5C29.5 12.9477 29.0523 12.5 28.5 12.5C27.9477 12.5 27.5 12.9477 27.5 13.5L29.5 13.5ZM13 6.75C13 6.19772 12.5523 5.75 12 5.75C11.4477 5.75 11 6.19772 11 6.75L13 6.75ZM20.2071 12.7929L12.8485 5.43431L11.4343 6.84853L18.7929 14.2071L20.2071 12.7929ZM11.1515 5.43431L3.79289 12.7929L5.20711 14.2071L12.5657 6.84853L11.1515 5.43431ZM29.5 21.75L29.5 13.5L27.5 13.5L27.5 21.75L29.5 21.75ZM11 6.75L11 21.75L13 21.75L13 6.75L11 6.75ZM20.25 31C25.3586 31 29.5 26.8586 29.5 21.75L27.5 21.75C27.5 25.7541 24.2541 29 20.25 29L20.25 31ZM20.25 29C16.2459 29 13 25.7541 13 21.75L11 21.75C11 26.8586 15.1414 31 20.25 31L20.25 29ZM12.8485 5.43432C12.3799 4.96568 11.6201 4.96569 11.1515 5.43431L12.5657 6.84853C12.2533 7.16094 11.7467 7.16095 11.4343 6.84852L12.8485 5.43432Z"
          fill={fill}
        />
      </g>
      <defs>
        <filter
          id="filter0_i_2348_11937"
          x="0"
          y="0"
          width="36"
          height="37"
          filterUnits="userSpaceOnUse"
          colorInterpolationFilters="sRGB"
        >
          <feFlood floodOpacity="0" result="BackgroundImageFix" />
          <feBlend
            mode="normal"
            in="SourceGraphic"
            in2="BackgroundImageFix"
            result="shape"
          />
          <feColorMatrix
            in="SourceAlpha"
            type="matrix"
            values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
            result="hardAlpha"
          />
          <feOffset dy="1" />
          <feGaussianBlur stdDeviation="0.5" />
          <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
          <feColorMatrix
            type="matrix"
            values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"
          />
          <feBlend
            mode="normal"
            in2="shape"
            result="effect1_innerShadow_2348_11937"
          />
        </filter>
      </defs>
    </svg>
  );
};
 
export default RefundIconTop;