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

100% Statements 2/2
0% Branches 0/3
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 28 29 30 31 32 33 34 35 36 37 38 39            137x         17x                                                      
type Props = {
  width?: number;
  height?: number;
  stroke?: string;
};
 
const DoneCheckIcon = ({
  width = 18,
  height = 18,
  stroke = "#13A75A",
}: Props) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 18 18"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <rect
        width={width}
        height={height}
        rx="9"
        fill="#D6FCDA"
        fillOpacity="0.5"
      />
      <path
        d="M7.23214 13.5L3.75 9.65M15 5.25C12.5612 7.84015 10.9838 9.51546 8.88281 11.7469"
        stroke={stroke}
        strokeWidth="1.2"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
};
 
export default DoneCheckIcon;