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

const Premium48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M12.535 8.5a2.5 2.5 0 0 0-2.08 1.113l-5.283 7.925a2.5 2.5 0 0 0 .182 3.013l16.748 19.54a2.5 2.5 0 0 0 3.796 0l16.747-19.54a2.5 2.5 0 0 0 .182-3.013l-5.283-7.925a2.5 2.5 0 0 0-2.08-1.113H12.535Zm-3.732 9 4-6h4.436l-2.667 6h-5.77Zm7.958 0 2.667-6h9.144l2.667 6H16.761Zm14.508 3H16.731L24 37.461 31.27 20.5Zm-3.117 12.351L33.445 20.5h5.293L28.152 32.851ZM33.428 17.5l-2.667-6h4.436l4 6h-5.77Zm-24.167 3h5.294l5.293 12.352L9.261 20.5Z"/>
</svg>
)
export default Premium48