
import React from 'react';
export const EllipsisHorizontalCircle = ({fill="currentColor",...other}) => {
  return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<circle cx="256" cy="256" r="26"/>

<circle cx="346" cy="256" r="26"/>

<circle cx="166" cy="256" r="26"/>

<path d="M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192Z" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
</svg>;
};
