All files / src/components/elements/Icons CredentialCheckFilled.tsx

0% Statements 0/2
0% Branches 0/6
0% Functions 0/1
0% Lines 0/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                                             
import { SvgProps } from "./";
 
export const CredentialCheckFilled: React.FunctionComponent<SvgProps> = (props) => {
  return (
    <svg
      width={props.size || "32"}
      height={props.size || "32"}
      viewBox="0 0 32 32"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M14.4295 0.650536C15.4351 0.234004 16.5649 0.234005 17.5705 0.650536L25.7432 4.03576C26.7488 4.45229 27.5477 5.25123 27.9642 6.25682L31.3495 14.4295C31.766 15.4351 31.766 16.5649 31.3495 17.5705L27.9642 25.7432C27.5477 26.7488 26.7488 27.5477 25.7432 27.9642L17.5705 31.3495C16.5649 31.766 15.4351 31.766 14.4295 31.3495L6.25682 27.9642C5.25123 27.5477 4.45229 26.7488 4.03576 25.7432L0.650536 17.5705C0.234004 16.5649 0.234005 15.4351 0.650536 14.4295L4.03576 6.25682C4.45229 5.25123 5.25123 4.45229 6.25682 4.03576L14.4295 0.650536Z"
        fill={props.color || "#5952FF"}
      />
      <path
        d="M11.1484 15.0784L13.8899 17.8573L20.849 10.7485C21.2549 10.3983 21.7752 10.2175 22.3059 10.2422C22.8366 10.2669 23.3386 10.4953 23.7116 10.8818C24.0846 11.2682 24.301 11.7842 24.3177 12.3266C24.3343 12.8691 24.15 13.3979 23.8014 13.8075L15.3661 22.4242C14.9719 22.8189 14.4419 23.04 13.8899 23.04C13.3379 23.04 12.8079 22.8189 12.4137 22.4242L8.19601 18.1158C7.84747 17.7063 7.6631 17.1774 7.67975 16.635C7.6964 16.0926 7.91286 15.5766 8.28584 15.1901C8.65882 14.8037 9.16085 14.5753 9.69156 14.5506C10.2223 14.5259 10.7425 14.7067 11.1484 15.0569V15.0784Z"
        fill="white"
      />
    </svg>
  );
};