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

const Premium20: 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">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M5.535 3.417a1.75 1.75 0 0 0-1.456.779L2.296 6.87a1.75 1.75 0 0 0 .128 2.11l6.247 7.289c.234.273.53.454.848.544l.021.05.066-.027c.259.059.529.059.788 0l.066.028.021-.05c.318-.091.614-.272.848-.545l6.247-7.289a1.75 1.75 0 0 0 .128-2.11L15.92 4.196a1.75 1.75 0 0 0-1.456-.78h-8.93Zm6.54 9.675 3.794-4.425h-1.896l-1.897 4.425Zm1.889-5.925h2.134l-1.425-2.139a.25.25 0 0 0-.208-.111h-1.501l1 2.25Zm-2.095-2.25 1 2.25H7.13l1-2.25h3.74Zm1.015 3.75-2.877 6.713h-.015L7.115 8.667h5.77Zm-4.96 4.426L6.027 8.667H4.131l3.793 4.426ZM6.036 7.167l1-2.25h-1.5a.25.25 0 0 0-.209.111L3.901 7.167h2.135Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Premium20