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

const ScreenRotation48: 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="M28 8a1 1 0 1 0 0 2c2.325 0 4.002.578 5.227 1.395 1.23.82 2.063 1.92 2.629 3.052.5 1.001.784 2.012.944 2.835l-2.353-1.176a1 1 0 1 0-.894 1.788l4 2a1 1 0 0 0 1.154-.187l3-3a1 1 0 0 0-1.414-1.414l-1.543 1.543a13.104 13.104 0 0 0-1.106-3.283c-.684-1.369-1.726-2.768-3.308-3.823C32.748 8.672 30.675 8 28 8ZM6 8.5A1.5 1.5 0 0 0 4.5 10v32A1.5 1.5 0 0 0 6 43.5h36a1.5 1.5 0 0 0 1.5-1.5V26a1.5 1.5 0 0 0-1.5-1.5H23.5V10A1.5 1.5 0 0 0 22 8.5H6Zm17.5 19v13h17v-13h-17Zm-16 13V35h13v5.5h-13Zm0-7.5V11.5h13V33h-13Z"/>
</svg>
)
export default ScreenRotation48