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

const OptionsVertical20: 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="M11.667 4.167a1.667 1.667 0 1 1-3.334 0 1.667 1.667 0 0 1 3.334 0Zm0 11.666a1.667 1.667 0 1 1-3.334 0 1.667 1.667 0 0 1 3.334 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 OptionsVertical20