All files / src/assets/icons CreditCardCheck.tsx

100% Statements 2/2
0% Branches 0/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 25 26 27            29x 15x                                      
type Props = {
  width?: string | number;
  height?: string | number;
  fill?: string;
};
 
const CreditCardCheck = ({ width = 22, height = 15 }: Props) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 16 16"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M2 3H14C14.2652 3 14.5196 3.10536 14.7071 3.29289C14.8946 3.48043 15 3.73478 15 4V6.5H14H5H2V12H4.5H5H5.5C5.77614 12 6 12.2239 6 12.5C6 12.7761 5.77614 13 5.5 13H5H4.5H2C1.73478 13 1.48043 12.8946 1.29289 12.7071C1.10536 12.5196 1 12.2652 1 12V4C1 3.73478 1.10536 3.48043 1.29289 3.29289C1.48043 3.10536 1.73478 3 2 3ZM14 5.5V4H2V5.5H14ZM14.379 9.32611C14.5591 9.11679 14.5354 8.80109 14.3261 8.62099C14.1168 8.44089 13.8011 8.46458 13.621 8.6739L10.5643 12.2266L9.38394 10.8118C9.20703 10.5997 8.89173 10.5713 8.6797 10.7482C8.46766 10.9251 8.43918 11.2404 8.61609 11.4524L10.1745 13.3203C10.2687 13.4332 10.4077 13.4989 10.5547 13.5C10.7016 13.5011 10.8416 13.4375 10.9375 13.3261L14.379 9.32611Z"
        fill="#292928"
      />
    </svg>
  );
};
 
export default CreditCardCheck;