All files / src/components/elements/Icons QrCode.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                                       
import { SvgProps } from ".";
import { colors } from "../../../themes";
 
export const QrCode: React.FunctionComponent<SvgProps> = (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="M11.5172 8.62069H8.62069V11.5172M13.1724 8.62069H14M11.5172 13.5862H8.2069M10.6897 11.1034H13.5862V14M4.06897 4.48276H4.89655M10.6897 4.48276H11.5172M4.06897 11.1034H4.89655M2.82759 2H6.13793C6.59499 2 6.96552 2.37052 6.96552 2.82759V6.13793C6.96552 6.59499 6.59499 6.96552 6.13793 6.96552H2.82759C2.37052 6.96552 2 6.59499 2 6.13793V2.82759C2 2.37052 2.37052 2 2.82759 2ZM9.44828 2H12.7586C13.2157 2 13.5862 2.37052 13.5862 2.82759V6.13793C13.5862 6.59499 13.2157 6.96552 12.7586 6.96552H9.44828C8.99121 6.96552 8.62069 6.59499 8.62069 6.13793V2.82759C8.62069 2.37052 8.99121 2 9.44828 2ZM2.82759 8.62069H6.13793C6.59499 8.62069 6.96552 8.99121 6.96552 9.44828V12.7586C6.96552 13.2157 6.59499 13.5862 6.13793 13.5862H2.82759C2.37052 13.5862 2 13.2157 2 12.7586V9.44828C2 8.99121 2.37052 8.62069 2.82759 8.62069Z"
        stroke={props.color || colors.midGray}
      />
    </svg>
  );
};