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

const RotatedMobile24: 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="M3 4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-9V5a1 1 0 0 0-1-1H3Zm9 10v6h8v-6h-8Zm-8 6v-2.5h6V20H4Zm0-3.5V6h6v10.5H4ZM14 4a.5.5 0 0 0 0 1c1.162 0 2.001.29 2.613.697.616.41 1.032.96 1.315 1.527.25.5.392 1.005.472 1.417l-1.176-.588a.5.5 0 1 0-.448.894l2 1a.5.5 0 0 0 .578-.093l1.5-1.5a.5.5 0 0 0-.708-.708l-.77.772a6.554 6.554 0 0 0-.554-1.642c-.342-.684-.863-1.383-1.654-1.91C16.374 4.335 15.338 4 14 4Z"/>
</svg>
)
export default RotatedMobile24