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

const OptionsHorizontal24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M7 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm14 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm-9 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/>
</svg>
)
export default OptionsHorizontal24