export function Pause(props: React.SVGAttributes<{}>) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 16 16"
      fill="none"
      {...props}
    >
      <path
        fill="currentColor"
        d="M3.5 13.486V2.514c0-.284.201-.514.45-.514h2.1c.249 0 .45.23.45.514v10.972c0 .284-.201.514-.45.514h-2.1c-.249 0-.45-.23-.45-.514ZM9.5 13.486V2.514c0-.284.201-.514.45-.514h2.1c.248 0 .45.23.45.514v10.972c0 .284-.201.514-.45.514h-2.1c-.249 0-.45-.23-.45-.514Z"
      />
    </svg>
  );
}
