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

const DeviceMobile64: 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="M19.833 14.334a2.5 2.5 0 0 1 2.5-2.5h19.334a2.5 2.5 0 0 1 2.5 2.5v35.333a2.5 2.5 0 0 1-2.5 2.5H22.333a2.5 2.5 0 0 1-2.5-2.5V14.333Zm3 28v6.833h18.334v-6.834H22.833Zm0-2h18.334v-25.5H22.833v25.5Zm5.5 5a1 1 0 0 1 1-1h5.334a1 1 0 1 1 0 2h-5.334a1 1 0 0 1-1-1Z"/>
</svg>
)
export default DeviceMobile64