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

const Premium64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M16.535 11.833a2.5 2.5 0 0 0-2.08 1.114L7.172 23.87a2.5 2.5 0 0 0 .182 3.014l22.748 26.539a2.5 2.5 0 0 0 3.796 0l22.747-26.54a2.5 2.5 0 0 0 .182-3.013l-7.283-10.924a2.5 2.5 0 0 0-2.08-1.114H16.535Zm-5.732 12 6-9h6.77l-4 9h-8.77Zm10.958 0 4-9h12.478l4 9H21.761Zm20.508 3H21.731L32 50.795l10.27-23.962Zm-6.117 19.352 8.293-19.352h8.293L36.152 46.185Zm8.276-22.352-4-9h6.769l6 9h-8.77Zm-33.167 3h8.294l8.293 19.352-16.587-19.352Z"/>
</svg>
)
export default Premium64