@nant-design/nant-icons
Version:
14 lines (9 loc) • 662 B
JSX
import React from 'react';
export const InformationCircleOutline = ({fill="currentColor",...other}) => {
return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M248 64C146.39 64 64 146.39 64 248s82.39 184 184 184 184-82.39 184-184S349.61 64 248 64Z" fill="none" stroke={fill} strokeMiterlimit="10" strokeWidth="32"/>
<path d="M220 220h32v116" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
<path d="M208 340h88" fill="none" stroke={fill} strokeLinecap="round" strokeMiterlimit="10" strokeWidth="32"/>
<path d="M248 130a26 26 0 1 0 26 26 26 26 0 0 0-26-26Z"/>
</svg>;
};