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

const Lighting20: 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="M7.5 1.75a.75.75 0 0 0-.702.487l-2.5 6.666A.75.75 0 0 0 5 9.917h4.25v6.833H7.5a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-1.75V9.917h2.5v1.347a1.334 1.334 0 1 0 1 0V9.917H15a.75.75 0 0 0 .702-1.014l-2.5-6.666a.75.75 0 0 0-.702-.487h-5Zm6.25 10.417a.333.333 0 1 0 0 .666.333.333 0 0 0 0-.666Zm.168-3.75H6.082L8.02 3.25h3.96l1.938 5.167Z"/>
</svg>
)
export default Lighting20