@nant-design/nant-icons
Version:
16 lines (10 loc) • 860 B
JSX
import React from 'react';
export const ListCircleOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M224 184h128m-128 72h128m-128 71h128" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<path d="M448 258c0-106-86-192-192-192S64 152 64 258s86 192 192 192 192-86 192-192Z" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
<circle cx="168" cy="184" r="8" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<circle cx="168" cy="257" r="8" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<circle cx="168" cy="328" r="8" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};