import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const HelpCircle32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M16 5C9.925 5 5 9.925 5 16s4.925 11 11 11 11-4.925 11-11S22.075 5 16 5ZM3 16C3 8.82 8.82 3 16 3s13 5.82 13 13-5.82 13-13 13S3 23.18 3 16Zm13-4.333c-.92 0-1.667.746-1.667 1.666a1 1 0 1 1-2 0 3.667 3.667 0 0 1 7.334 0c0 .675-.305 1.235-.612 1.652-.306.417-.7.802-1.024 1.117l-.021.021c-.342.332-.61.593-.803.843-.203.26-.207.366-.207.367a1 1 0 1 1-2 0c0-.665.329-1.21.626-1.593.283-.364.643-.715.946-1.01l.064-.06c.343-.335.615-.608.809-.87.193-.263.222-.405.222-.467 0-.92-.747-1.666-1.667-1.666Zm0 11A1.333 1.333 0 1 0 16 20a1.333 1.333 0 0 0 0 2.667Z"/>
</svg>
)
export default HelpCircle32