import * as React from 'react';
import type { SVGProps } from 'react';
const SvgFilterIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg xmlns="http://www.w3.org/2000/svg" width={16} height={16} {...props}>
    <path
      fill="currentColor"
      d="M2 2h12a1 1 0 0 1 0 2H2a1 1 0 1 1 0-2m2 5h8a1 1 0 0 1 0 2H4a1 1 0 1 1 0-2m3 5h2a1 1 0 0 1 0 2H7a1 1 0 0 1 0-2"
    />
  </svg>
);
export default SvgFilterIcon;
