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

const LeroyMerlin48: 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="M22.94 12.94a1.5 1.5 0 0 1 2.12 0l18 18A1.5 1.5 0 0 1 42 33.5H6a1.5 1.5 0 0 1-1.06-2.56l18-18ZM9.62 30.5h28.76L24 16.121 9.621 30.5Z"/>
</svg>
)
export default LeroyMerlin48