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

const Premium32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M8.535 5.667a2 2 0 0 0-1.664.89l-3.283 4.925a2 2 0 0 0 .146 2.41l10.747 12.54a2 2 0 0 0 3.037 0l10.748-12.54a2 2 0 0 0 .146-2.41l-3.284-4.925a2 2 0 0 0-1.664-.89H8.535Zm0 2h3.14l-1.778 4H5.868l2.667-4Zm2.457 4 1.777-4h6.462l1.777 4H10.992Zm10.035 2H10.972l4.799 11.196.229.267.23-.267 4.797-11.196Zm-2.622 8.657 3.71-8.657h3.71l-7.42 8.657Zm3.698-10.657-1.778-4h3.14l2.666 4h-4.028Zm-15.929 2h3.71l3.71 8.657-7.42-8.657Z"/>
</svg>
)
export default Premium32