@nant-design/nant-icons
Version:
10 lines (7 loc) • 418 B
JSX
import React from 'react';
export const InvertMode = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<circle fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32" cx="256" cy="256" r="208"/>
<path d="M256 176v160a80 80 0 0 0 0-160Zm0-128v128a80 80 0 0 0 0 160v128c-114.88 0-208-93.12-208-208S141.12 48 256 48Z"/>
</svg>;
};