export function Play(props: React.SVGAttributes<{}>) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 16 16"
      fill="none"
      {...props}
    >
      <path
        fill="currentColor"
        d="M4.285 1.309C3.023.585 2 1.178 2 2.632v10.735c0 1.456 1.023 2.048 2.285 1.325l9.383-5.381c1.262-.724 1.262-1.898 0-2.622L4.285 1.31Z"
      />
    </svg>
  );
}
