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

const OptionsHorizontal20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M5.833 10A1.667 1.667 0 1 1 2.5 10a1.667 1.667 0 0 1 3.333 0ZM17.5 10a1.667 1.667 0 1 1-3.333 0 1.667 1.667 0 0 1 3.333 0ZM10 11.667a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334Z"/>
</svg>
)
export default OptionsHorizontal20