@nant-design/nant-icons
Version:
14 lines (9 loc) • 473 B
JSX
import React from 'react';
export const EllipsisVerticalCircleOutline = ({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="256" cy="346" r="26"/>
<circle cx="256" cy="166" 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>;
};