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

const DeviceMobile48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M14.5 11A2.5 2.5 0 0 1 17 8.5h14a2.5 2.5 0 0 1 2.5 2.5v26a2.5 2.5 0 0 1-2.5 2.5H17a2.5 2.5 0 0 1-2.5-2.5V11Zm3 21v4.5h13V32h-13Zm0-2h13V11.5h-13V30Zm3.5 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Z"/>
</svg>
)
export default DeviceMobile48