All files / src/assets/icons/RebrandedIcons GiveLogo.tsx

0% Statements 0/1
0% Branches 0/3
0% Functions 0/1
0% Lines 0/1

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                                                         
import React from "react";
 
interface IconProps {
  height?: number;
  width?: number;
  color?: string;
}
 
function Icon({ color = "#A9AFBD", height = 20, width = 55 }: IconProps) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width={width}
      height={height}
      fill="none"
      viewBox="0 0 55 20"
    >
      <path
        fill={color}
        fillRule="evenodd"
        d="M47.847 12.902c-3.029 0-5.474-2.516-5.403-5.592.069-2.936 2.47-5.312 5.376-5.326 2.45-.012 4.52 1.622 5.197 3.87a.51.51 0 01-.483.661h-3.852a.987.987 0 00-.982.992c0 .548.44.991.982.991h3.975c1.477 0 2.583-1.363 2.298-2.826a5.842 5.842 0 00-.33-1.149C53.48 1.838 50.83-.042 47.743.001c-3.968.056-7.207 3.326-7.262 7.335-.057 4.158 3.263 7.547 7.366 7.547h2.788a.986.986 0 00.981-.99.986.986 0 00-.981-.992h-2.788zM39.004 1.463l-3.215 6.35a.937.937 0 01-.836.518c-.702 0-1.157-.75-.837-1.382L37.331.6a.937.937 0 01.837-.518c.702 0 1.156.75.836 1.382zm-18.765-.39a.986.986 0 00-.981-.99.986.986 0 00-.982.99v12.739c0 .547.44.99.982.99a.986.986 0 00.98-.99V1.073zm10.648 13.73c.701 0 1.16-.742.852-1.379L25.54.62a.948.948 0 00-.852-.537c-.701 0-1.16.742-.852 1.379l6.198 12.805c.159.329.49.537.852.537zM12.57 2.065H7.286v-.001c-2.94 0-5.324 2.407-5.324 5.378 0 2.97 2.383 5.377 5.324 5.377h4.303V9.322c0-.547.438-.99.98-.99.543 0 .982.443.982.99v3.867c0 3.763-3.018 6.812-6.743 6.812H4.612a.986.986 0 01-.981-.991c0-.547.439-.992.98-.992h2.077a4.893 4.893 0 004.302-2.579.43.43 0 00-.375-.635H7.286C3.263 14.803 0 11.508 0 7.443 0 3.377 3.262.083 7.286.083h5.285c.541 0 .981.443.981.99a.986.986 0 01-.981.992z"
        clipRule="evenodd"
      ></path>
    </svg>
  );
}
 
export default Icon;