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

const Barbecue20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M10.353 2.437a.5.5 0 0 0-.707-.708c-.434.434-.549.93-.495 1.412.047.426.229.85.375 1.19l.014.032c.164.383.285.676.314.94a.657.657 0 0 1-.208.593.5.5 0 0 0 .707.707 1.65 1.65 0 0 0 .495-1.411c-.047-.426-.229-.85-.375-1.19l-.014-.033c-.164-.382-.285-.675-.314-.939a.657.657 0 0 1 .208-.593ZM4.25 8.333a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 .75.75 5.744 5.744 0 0 1-2.468 4.722l3.915 3.914a.75.75 0 0 1-1.06 1.061l-4.26-4.26a5.708 5.708 0 0 1-1.127.264V17.5a.75.75 0 0 1-1.5 0v-3.466a5.709 5.709 0 0 1-1.126-.264l-4.26 4.26a.75.75 0 1 1-1.061-1.06l3.915-3.915A5.743 5.743 0 0 1 4.25 8.333Zm1.566.75a4.251 4.251 0 0 0 8.368 0H5.816Zm6.562-6.545a.5.5 0 0 1 .05.706c-.083.096-.092.163-.083.244.013.119.067.255.164.48l.011.025c.083.19.2.46.23.745.037.336-.044.685-.321 1.006a.5.5 0 1 1-.756-.655c.083-.096.092-.164.084-.244-.013-.119-.068-.255-.165-.48l-.01-.025c-.084-.19-.2-.46-.231-.745a1.277 1.277 0 0 1 .322-1.006.5.5 0 0 1 .705-.05Zm-3.875.706a.5.5 0 1 0-.756-.655c-.278.32-.359.67-.322 1.006.03.285.147.554.23.745l.011.025c.097.225.152.361.165.48.008.08 0 .148-.084.244a.5.5 0 0 0 .756.655c.278-.32.358-.67.322-1.006-.03-.286-.148-.555-.23-.745l-.011-.025c-.098-.225-.152-.361-.165-.48-.009-.08 0-.148.084-.244Z"/>
</svg>
)
export default Barbecue20