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

0% Statements 0/2
0% Branches 0/4
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 24 25                                                 
export interface VerifiedProps {
  size?: string;
}
 
export const Verified: React.FunctionComponent<VerifiedProps> = (props) => {
  return (
    <svg
      width={props.size || "16"}
      height={props.size || "16"}
      viewBox="0 0 16 16"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M6.42947 0.650535C7.43506 0.234004 8.56494 0.234005 9.57053 0.650536L12.0863 1.69261C13.0919 2.10914 13.8909 2.90808 14.3074 3.91368L15.3495 6.42947C15.766 7.43506 15.766 8.56494 15.3495 9.57053L14.3074 12.0863C13.8909 13.0919 13.0919 13.8909 12.0863 14.3074L9.57053 15.3495C8.56494 15.766 7.43506 15.766 6.42947 15.3495L3.91368 14.3074C2.90808 13.8909 2.10914 13.0919 1.69261 12.0863L0.650535 9.57053C0.234004 8.56494 0.234005 7.43506 0.650536 6.42947L1.69261 3.91368C2.10914 2.90808 2.90808 2.10914 3.91368 1.69261L6.42947 0.650535Z"
        fill="#5952FF"
      />
      <path
        d="M5.57419 7.5391L6.94494 8.92854L10.4245 5.37415C10.6274 5.19905 10.8876 5.10864 11.1529 5.12099C11.4183 5.13334 11.6693 5.24754 11.8558 5.44077C12.0423 5.63399 12.1505 5.89199 12.1588 6.1632C12.1672 6.43441 12.075 6.69883 11.9007 6.90361L7.68303 11.212C7.48593 11.4093 7.22093 11.5199 6.94494 11.5199C6.66894 11.5199 6.40395 11.4093 6.20684 11.212L4.09801 9.0578C3.92374 8.85302 3.83155 8.58859 3.83987 8.31738C3.8482 8.04618 3.95643 7.78817 4.14292 7.59495C4.32941 7.40173 4.58042 7.28752 4.84578 7.27517C5.11113 7.26282 5.37127 7.35323 5.57419 7.52833V7.5391Z"
        fill="white"
      />
    </svg>
  );
};