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

const SvgFilter12 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 12 12"
		{...props}
	>
		<path
			fill="currentColor"
			d="M1 3.7c0-.387.204-.7.455-.7h9.09c.252 0 .455.313.455.7 0 .387-.204.7-.454.7H1.455C1.204 4.4 1 4.087 1 3.7ZM2.364 6.5c0-.387.203-.7.454-.7h6.364c.25 0 .454.313.454.7 0 .387-.203.7-.454.7H2.818c-.25 0-.454-.313-.454-.7ZM3.727 9.3c0-.387.204-.7.455-.7h3.636c.251 0 .455.313.455.7 0 .387-.204.7-.455.7H4.182c-.251 0-.455-.313-.455-.7Z"
		/>
	</svg>
);
export default SvgFilter12;
