@nant-design/nant-icons
Version:
12 lines (8 loc) • 433 B
JSX
import React from 'react';
export const DiscOutline = ({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="208" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
<circle cx="256" cy="256" r="96" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
<circle cx="256" cy="256" r="32"/>
</svg>;
};