@nant-design/nant-icons
Version:
10 lines (7 loc) • 436 B
JSX
import React from 'react';
export const Disc = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M256 176a80 80 0 1 0 80 80 80.09 80.09 0 0 0-80-80Zm0 112a32 32 0 1 1 32-32 32 32 0 0 1-32 32Z"/>
<path d="M414.39 97.61A224 224 0 1 0 97.61 414.39 224 224 0 1 0 414.39 97.61ZM256 368a112 112 0 1 1 112-112 112.12 112.12 0 0 1-112 112Z"/>
</svg>;
};