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

const SvgFilter16 = (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="currentColor"
			d="M1 4c0-.552.285-1 .636-1h12.728c.351 0 .636.448.636 1s-.285 1-.636 1H1.636C1.285 5 1 4.552 1 4ZM2.91 8c0-.552.284-1 .635-1h8.91c.351 0 .636.448.636 1s-.285 1-.636 1h-8.91c-.351 0-.636-.448-.636-1ZM4.818 12c0-.552.285-1 .637-1h5.09c.352 0 .637.448.637 1s-.285 1-.636 1H5.455c-.352 0-.637-.448-.637-1Z"
		/>
	</svg>
);
export default SvgFilter16;
