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

const LeroyMerlin24: 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="M11.293 6.293a1 1 0 0 1 1.414 0l9 9A1 1 0 0 1 21 17H3a1 1 0 0 1-.707-1.707l9-9ZM5.414 15h13.172L12 8.414 5.414 15Z"/>
</svg>
)
export default LeroyMerlin24