const PlayIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="20"
      height="28"
      viewBox="0 0 20 28"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path d="M0 27.3346V0.667969L20 14.0013L0 27.3346Z" fill="currentColor" />
    </svg>
  );
};

export { PlayIcon };
