
import React from 'react';
export const FilterCircleOutline = ({fill="currentColor",...other}) => {
  return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path fill="none" stroke={fill} strokeWidth="32" strokeMiterlimit="10" d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192Z"/>

<path fill="none" stroke={fill} strokeWidth="32" strokeLinecap="round" strokeLinejoin="round" d="M144 208h224m-192 64h160m-112 64h64"/>
</svg>;
};
