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

const OptionsHorizontal64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M18.667 32A5.333 5.333 0 1 1 8 32a5.333 5.333 0 0 1 10.667 0ZM56 32a5.333 5.333 0 1 1-10.667 0A5.333 5.333 0 0 1 56 32Zm-24 5.333a5.333 5.333 0 1 0 0-10.666 5.333 5.333 0 0 0 0 10.666Z"/>
</svg>
)
export default OptionsHorizontal64