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

const Star32: 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">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M16 2.333a1 1 0 0 1 .908.581l3.772 8.173 8.795 1.257a1 1 0 0 1 .492 1.764l-6.825 5.583 2.486 8.701a1 1 0 0 1-1.485 1.127L16 24.508l-8.143 5.01a1 1 0 0 1-1.485-1.126l2.486-8.701-6.825-5.583a1 1 0 0 1 .492-1.764l8.795-1.257 3.772-8.173a1 1 0 0 1 .908-.58Zm0 3.387-3.092 6.7-.228.493-.539.077-7.079 1.011 5.571 4.559.51.416-.182.632-1.959 6.858 6.474-3.984.524-.323.524.323 6.474 3.984-1.96-6.858-.18-.632.509-.416 5.57-4.56-7.078-1.01-.539-.078-.228-.494L16 5.72Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="32" height="32" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Star32