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

const DeviceMobile20: 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.917 5.167c0-.967.783-1.75 1.75-1.75h4.666c.967 0 1.75.783 1.75 1.75v9.666a1.75 1.75 0 0 1-1.75 1.75H7.666a1.75 1.75 0 0 1-1.75-1.75V5.167Zm1.75-.25a.25.25 0 0 0-.25.25v7.25h5.166v-7.25a.25.25 0 0 0-.25-.25H7.666Zm4.916 8.5H7.416v1.416c0 .138.112.25.25.25h4.667a.25.25 0 0 0 .25-.25v-1.417Zm-3.917.75a.5.5 0 0 1 .5-.5h1.667a.5.5 0 0 1 0 1H9.166a.5.5 0 0 1-.5-.5Z"/>
</svg>
)
export default DeviceMobile20