// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { SVGProps } from 'react';

const SvgMediaPause16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			fill="#fff"
			d="M16 7.996C16 12.388 12.394 16 8 16c-4.386 0-8-3.612-8-8.004C0 3.612 3.606 0 8 0c4.386 0 8 3.612 8 7.996Z"
		/>
		<path
			fill="currentColor"
			d="M8 16c4.394 0 8-3.612 8-8.004C16 3.612 12.386 0 8 0 3.606 0 0 3.612 0 7.996 0 12.388 3.614 16 8 16Zm-2.318-4.816c-.424 0-.652-.25-.652-.628V5.429c0-.37.228-.62.652-.62h.916c.425 0 .652.25.652.62v5.127c0 .378-.227.628-.652.628h-.916Zm3.735 0c-.432 0-.66-.25-.66-.628V5.429c0-.37.228-.62.66-.62h.909c.424 0 .651.25.651.62v5.127c0 .378-.227.628-.651.628h-.91Z"
		/>
	</svg>
);
export default SvgMediaPause16;
