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

50% Statements 1/2
0% Branches 0/3
0% Functions 0/1
50% Lines 1/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 32519x                                                              
const KotoBackArrow = ({
  width = 24,
  height = 24,
  stroke = "#8F8F8F",
}: {
  width?: number;
  height?: number;
  stroke?: string;
}) => {
  return (
    <>
      <svg
        width={width}
        height={height}
        viewBox="0 0 24 24"
        fill="none"
        xmlns="http://www.w3.org/2000/svg"
      >
        <path
          d="M9.33333 17L4 12M4 12H20M4 12L6 10M9.33333 7L8 8.25"
          stroke={stroke}
          strokeWidth="1.5"
          strokeLinecap="round"
          strokeLinejoin="round"
        />
      </svg>
    </>
  );
};
 
export default KotoBackArrow;