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

const StoreBricoman48: 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="M12 8.5a1.5 1.5 0 0 0-1.06 2.56l1.439 1.44H6A1.5 1.5 0 0 0 4.5 14v24A1.5 1.5 0 0 0 6 39.5h36a1.5 1.5 0 0 0 1.5-1.5V14a1.5 1.5 0 0 0-1.5-1.5h-7.257l1.363-1.486A1.5 1.5 0 0 0 35 8.5H12Zm19.993 7-6.887 7.514a1.5 1.5 0 0 1-2.167.047L15.38 15.5H7.5v21H16V27a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v9.5h8.5v-21h-8.507Zm-8.04 4.332L15.62 11.5h15.97l-7.638 8.332ZM18 28h5v8.5h-5V28Zm7 0v8.5h5V28h-5Z"/>
</svg>
)
export default StoreBricoman48