@nant-design/nant-icons
Version:
10 lines (7 loc) • 369 B
JSX
import React from 'react';
export const ContrastOutline = ({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} strokeLinejoin="round" strokeWidth="32"/>
<path d="M256 464c-114.88 0-208-93.12-208-208S141.12 48 256 48Z"/>
</svg>;
};