All files / Rindu/components/icons Play.tsx

100% Statements 1/1
50% Branches 1/2
100% Functions 1/1
100% Lines 1/1

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    19x                            
import { ReactElement } from "react";
 
export default function Play({
  ...props
}: {
  [x: string]: string | number;
}): ReactElement {
  return (
    <svg height="16" width="16" viewBox="0 0 24 24" {...props}>
      <path
        fill={(props.fill as string) ?? "#000"}
        d="M7.05 3.606l13.49 7.788a.7.7 0 010 1.212L7.05 20.394A.7.7 0 016 19.788V4.212a.7.7 0 011.05-.606z"
      ></path>
    </svg>
  );
}